摘要: import sys num = sys.stdin.readline().strip() list = [] try: while True: line = sys.stdin.readline().strip() if line == '': break lines = line.split() 阅读全文
posted @ 2020-06-29 10:11 阿刚的代码进阶之旅 阅读(616) 评论(0) 推荐(0) 编辑