Python 入门:input

Zada ·
更新时间:2024-11-13
· 533 次阅读

Python 入门:input

hello 大家好,今天我们来学习input
当你想问别人问题时,
你就可以使用input
当然,
后期会教easygui库

我们开始学习吧

a = input('what is your name? ' + '\n') #创建变量储存返回值 #询问别人的姓名 print('hello ' + a)#向别人问好 #字符串拼接

OK 这就是input的简单用法,效果

console: >>>what is your name? XXX >>>hello XXX 总结
关键字 含义
input() 接收并返回用户输入的信息
+ 字符串拼接符
‘\n’ 换行符
print() 打印在控制台的函数

作者:哈哈哈~嗝~



python 入门 Python input

需要 登录 后方可回复, 如果你还没有账号请 注册新账号