Starting Point
This commit is contained in:
10
Pass1/Selection.py
Executable file
10
Pass1/Selection.py
Executable file
@@ -0,0 +1,10 @@
|
||||
import random
|
||||
random_number = random.randrange(1,100)
|
||||
|
||||
if random_number < 50:
|
||||
print("The %d < 50" % random_number)
|
||||
elif random_number == 50:
|
||||
print("The %d = 50" % random_number)
|
||||
else:
|
||||
print("The %d > 50 " % random_number)
|
||||
|
||||
Reference in New Issue
Block a user