Files
freeCodeCamp/curriculum/challenges/japanese/23-python-for-everybody/python-for-everybody/strings-in-python.md
freeCodeCamp's Camper Bot 9c20069eb2 chore(i18n,learn): processed translations (#53819)
Co-authored-by: Oliver Eyton-Williams <ojeytonwilliams@gmail.com>
2024-03-12 22:29:52 +05:30

470 B

id, title, challengeType, videoId, bilibiliIds, dashedName
id title challengeType videoId bilibiliIds dashedName
5e7b9f070b6c005b0e76f060 Python の文字列 11 LYZj207fKpQ
aid bvid cid
504434218 BV1Lg41177s8 376531802
strings-in-python

--question--

--text--

次のコードは何を表示しますか?

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