import sys lines = [] while True: line = sys.stdin.readline().strip() if not line: break lines.append(line) print(lines) # input, end input ...
確定! 回上一頁