-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathFirst_Ever.py
More file actions
44 lines (31 loc) · 933 Bytes
/
First_Ever.py
File metadata and controls
44 lines (31 loc) · 933 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
print("Hello Rukkan Pukkan")
print("He is the largest lion na tiger")
# This is my first python program
first_name = "Rukkan"
last_name = "LionTiger"
print (f"Hello {first_name} {last_name}")
is_Lion = True
is_Tiger = True
is_Car = True
is_Monkey = False
print (f"Is he a lion = {is_Lion}")
num_Eggs = 2
print (f"How many eggs does he have? = {num_Eggs - 1}")
print (f"how many original eggs? = {num_Eggs}")
owner = input ("Enter name of owner: ")
ownerAge = int(input ("Enter age: "))
print (f"Owner name: {owner}")
print (f"Age of owner: {ownerAge}")
if ownerAge == 20:
print ("You are now an adult bitch")
elif ownerAge <= 18:
print ("Aww hi minor")
while ownerAge < 20:
print ("Fucking bitch")
num = 5
num *= 10
counter = 0
print (f"New number #{counter + 1}: {num}")
counter += 1
num *= 10
print(f"New number #{counter + 1}: {num}")