python 年龄计算流程图
Flowchart in python age calculation
我已经完成了这项作业,其中我需要将一个简单的流程图转换为 python,但我卡在了这一点上。我需要计算未来的年龄,但我不知道如何对此提供任何帮助,在此先感谢。FLOWCHART IMAGE
这是我已经尝试过的:Flowchart
希望这能解决您的问题!
参考这个:
name = input()
print("Hello ",name," I am from the year 2210 and I am 20 years old")
print("How old are you?")
age = int(input())
future_age = age+(2210-2020)
print("Wow, by 2210 you will be",future_age,"that is really old!")
我已经完成了这项作业,其中我需要将一个简单的流程图转换为 python,但我卡在了这一点上。我需要计算未来的年龄,但我不知道如何对此提供任何帮助,在此先感谢。FLOWCHART IMAGE
这是我已经尝试过的:Flowchart
希望这能解决您的问题!
参考这个:
name = input()
print("Hello ",name," I am from the year 2210 and I am 20 years old")
print("How old are you?")
age = int(input())
future_age = age+(2210-2020)
print("Wow, by 2210 you will be",future_age,"that is really old!")