希望多学一门技能,所以最近一直在学习 python,在看《 Python Crash Course 》,其中作者在最开头提到的
“ There is real satisfaction in building something with a purpose, something that solves a problem. ”
今天我算是体会到了,起因是看到一个人在朋友圈晒保险(年年拿钱的那种,可以拿到 105 岁[我惊呆了]),
于是萌生用 python 来看要是买 10w 到底最后能拿到多少钱,
于是有了下面这几行代码,虽然很简单[大佬请忽略]
可是这个小东西带来的成就感可能会是我以后人生所想要追求的
# Define your initial saving amount
saving_amount = 100000
# Define the saving rate of your bank
saving_rate = 0.04
# Assign an initial value 0 for the following loop
year = 0
# Assign a default True value for the following loop
flag = True
while flag:
# Start a loop before a False value is associated to flag
if year < 100:
saving_amount = saving_amount*(1+saving_rate)
year += 1
flag = True
else:
print(f"You have {saving_amount} in your account.")
flag = False
这是一个专为移动设备优化的页面(即为了让你能够在 Google 搜索结果里秒开这个页面),如果你希望参与 V2EX 社区的讨论,你可以继续到 V2EX 上打开本讨论主题的完整版本。
V2EX 是创意工作者们的社区,是一个分享自己正在做的有趣事物、交流想法,可以遇见新朋友甚至新机会的地方。
V2EX is a community of developers, designers and creative people.