input 的两种格式
1.
print("How old are you?" end = '')
age = input()
2.
age = input("How old are you?")
pydoc的语法规则
python -m pydoc input # input可谓任意函数或者字段
input 的两种格式
1.
print("How old are you?" end = '')
age = input()
2.
age = input("How old are you?")
pydoc的语法规则
python -m pydoc input # input可谓任意函数或者字段