上のコードだと正常に動くのですが、下のコードは
AttributeError: 'list' object has no attribute 'rstrip'
というエラーになってしまいます。
rstrip()が間違っているのは分かるのですが、何故上のコードは良くて下のコードでは駄目なのでしょうか。
違いを教えていただけると嬉しいです。
python
1import sys 2for line in sys.stdin.readlines(): 3 print(line.rstrip())
python
1import sys 2line = sys.stdin.readlines() 3print(line.rstrip())
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2020/05/29 06:10
2020/05/29 06:21
2020/05/29 07:18