Skip to content

Commit 26f9553

Browse files
Checking the tests and small details added
1 parent aca3408 commit 26f9553

File tree

2 files changed

+2
-6
lines changed

2 files changed

+2
-6
lines changed

exercises/09-Random-Numbers/app.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,8 @@
11
import random
22

33
def get_randomInt():
4-
# CHANGE ONLY THIS LINE BELOW
4+
# CHANGE ONLY THIS LINE BELOW
55
random_number = random.random()
66
return random_number
77

8-
9-
108
print(get_randomInt())
Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,8 @@
11
import random
22

33
def get_randomInt():
4-
# CHANGE ONLY THIS LINE BELOW
4+
# CHANGE ONLY THIS LINE BELOW
55
random_number = random.randint(1,10)
66
return random_number
77

8-
9-
108
print(get_randomInt())

0 commit comments

Comments
 (0)