摘要: Python学习笔记 1.起步 print("Hello world") 输入: # 单个输入 b=input() # input()接受的是string类型,需要使用数据类型转化 # 多个输入,使用分割字符串的方式 b=map(int,input().split(' ')) 输出: # 输出 pr 阅读全文
posted @ 2021-07-03 22:32 de1tezer0 阅读(142) 评论(0) 推荐(0)