ex11专题

【Python自学笔记】EX11-EX14 用户的输入

# ex11# 获取输入input()# 用end=' '来告诉print函数,不要以换行符作为结尾开始新的一行print("How old are you?", end=' ')age = input()print("How tall are you?", end=' ')tall = input()print("How much do you weight?", end=' ')