age = input("how old are you? ")
height = input("how tall are you? ")
weight = input("how much do you weight? ")
print(f"so, you're {age} old, {height} tall and {weight} heavy.")
print("how old are you? ", input())
文件保存为ex12.py
*
帮助文档
*
终端 pydoc input
*
windows python -m pydoc input
*
q 退出pydoc
* print("how old are you? ", input())
可以这么写,但是input()的结果没有存到变量中