Network disconnection
Description
x = 3 , y = 5
의 값을 가지고 있습니다. position
이 x와 y값으로 이루어진 튜플이 되도록 packing해 보세요.
packing이란 하나의 변수에 여러개의 값을 넣는 것입니다.
예를 들어,
a, b = 1, 2
c = a, b #c = (1, 2)
Fill type challenge HOWTO
- In the Fill type challenge, you have to fill the blank with appropriate code
- The given code except the blank cannot be edited.
- An error message will be shown in the Result area when you leave the blank empty.
1
2
3
4
5
x = 3
y = 5
position =
print("x, y로 이루어진 튜플 position의 값은 {}입니다.".format(position))
Result
Stop
Result of [Run] or [Submit] will be displayed here