Network disconnection
Description
https://docs.python.org/3/library/random.html?highlight=random.randint#random.randint 에서 random.randint
의 활용법을 확인하고, 2번째 줄에 코드를 추가해서 random_number
가 2보다 크거나 같고, 5보다 작거나 같은 임의의 정수를 가지도록 만들어 보세요.
공식 문서를 참조하여 random.randint(a, b)
에 대해 알아보세요.
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
import random
random_number =
print(random_number)
Result
Stop
Result of [Run] or [Submit] will be displayed here