摘要: python 输入输出 s = input() 返回值是str类型,如果需要输入int型 a = int(intput()) input一次是读取一行,如果一行有多个数据a = list(map(int, input().split())) for循环 for i in a: #遍历元组,类似于au 阅读全文
posted @ 2020-01-26 11:03 hezongdnf 阅读(77) 评论(0) 推荐(0) 编辑