Skip to content

Commit

Permalink
explaining Lucky number.py to Mr.CEO.patchamamma
Browse files Browse the repository at this point in the history
  • Loading branch information
Abdelahe53 authored Aug 11, 2024
1 parent 7013871 commit 080cdf0
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions Lucky number.py
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
#UNFINISHED IT JUST PRACTICE
import random
import random #used the "random" library

print("If you got lucky 13 in the first try you are the luckiest person")
input("Tap `Enter` to try your luck: ")
random_number = random.randint(1, 100)
print("Your number is:", random_number)
print("If you got lucky 13 in the first try you are the luckiest person") #there is nothing to explain in this line a zbay, just a normal print
input("Tap `Enter` to try your luck: ") #this is the input u fucking iliterate where you can tap `Enter` to get the fucking number
random_number = random.randint(1, 100) #I used a range between 1 to 100 to give you hope.
print("Your number is:", random_number) #here it gives you a random number

number = random_number
number = random_number #number is a fucking random number

#THIS LOOP IS ALREADY FUCKED SO NOTHING TO EXPLAIN
while True:
if number == 13:
print("You are the luckiest person on earth")
Expand Down

0 comments on commit 080cdf0

Please sign in to comment.