Initial commit: Python learning project with examples and exercises

This commit is contained in:
2025-07-20 17:08:50 +08:00
commit bc7bb56271
111 changed files with 11535 additions and 0 deletions
+7
View File
@@ -0,0 +1,7 @@
import math
jia = 1+0.001
jian = 1-0.001
dayup = math.pow(jia,365)
daydown = math.pow(jian,365)
print("向上:{:.2f}.".format(dayup))
print("向下:{:.2f}.".format(daydown))