We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent aca3408 commit 26f9553Copy full SHA for 26f9553
exercises/09-Random-Numbers/app.py
@@ -1,10 +1,8 @@
1
import random
2
3
def get_randomInt():
4
- # CHANGE ONLY THIS LINE BELOW
+ # CHANGE ONLY THIS LINE BELOW
5
random_number = random.random()
6
return random_number
7
8
-
9
10
print(get_randomInt())
exercises/09-Random-Numbers/solution.hide.py
random_number = random.randint(1,10)
0 commit comments