--- id: 5e7b9f070b6c005b0e76f060 title: Python 字符串 challengeType: 11 videoId: LYZj207fKpQ bilibiliIds: aid: 504434218 bvid: BV1Lg41177s8 cid: 376531802 dashedName: strings-in-python --- # --question-- ## --text-- 這些代碼會打印出什麼? ```python for n in "banana": print(n) ``` ## --answers--
n
n
---
0
1
---
0
1
2
3
4
5
---
b
a
n
a
n
a
## --video-solution-- 4