EOF寫法,先把自己常用的兩種寫法寫出來,雖然網路上都可以查得到,算是提醒一下(高手可略過)
1. import sys
for str1 in sys.stdin:
print(list(str1))
2. try except
try:
str1 = input()