Starting Point

This commit is contained in:
2018-02-22 14:42:33 +01:00
parent b3b46b401f
commit b80d0e844a
14 changed files with 165 additions and 0 deletions

10
Pass1/Selection.py Executable file
View 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)