Files
freeCodeCamp/curriculum/challenges/korean/23-python-for-everybody/python-for-everybody/introduction-elements-of-python.md
camperbot 7a0d396180 chore(i18n,learn): processed translations (#53415)
Co-authored-by: Naomi Carrigan <nhcarrigan@gmail.com>
Co-authored-by: Oliver Eyton-Williams <ojeytonwilliams@gmail.com>
2024-02-13 18:31:01 +01:00

406 B

id, title, challengeType, videoId, bilibiliIds, dashedName
id title challengeType videoId bilibiliIds dashedName
5e6a54c358d3af90110a60a3 소개: 파이썬의 요소 11 aRY_xjL35v0
aid bvid cid
674420725 BV1MU4y1H7Lj 376315889
introduction-elements-of-python

--question--

--text--

What will the following program print out:

x = 43
x = x + 1
print(x)

--answers--

x


x + 1


44

--video-solution--

3