2024年4月1日
摘要: 【一】程序与用户交互 1)输入(input) 2)输出(print) 1.简单字符串 print('hello,word!') 2.多个变量输出 a='one' b='two' print(a,b) #one two 3.默认end参数 print('hello',end='_') print('w 阅读全文
posted @ 2024-04-01 17:25 晓雾-Mist 阅读(2) 评论(0) 推荐(0) 编辑