-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path311.py
More file actions
31 lines (25 loc) · 701 Bytes
/
311.py
File metadata and controls
31 lines (25 loc) · 701 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
'''
a=8675309
print(int(float(3.14159)))
print(str(a),type(a))
print(bool(1))
print(bool(0))
print(float(10))
'''
q1 = input("Whats ur fav numbr")
print("Ok, i dont liek that number but u respondedd with... " + q1)
if q1 == "Bruh":
print("I dont accept Bruh as a answer Nerd. ")
else:
q2 = input("Do a dance move ")
print("jk just kidding bro.... you respondedd with " + q2)
# name = input("Whats your name?")
# print("Hello, " + name)
# number = input("Whats your favortie number")
# print(int(number))
# if int(number) > 4:
# print("Wow thats a big Number bro")
# elif int(number) == 4:
# print("Wow i love that number too")
# else:
# print("Whow, that number Sucks.")