-
Notifications
You must be signed in to change notification settings - Fork 9
/
math.py
44 lines (30 loc) · 1019 Bytes
/
math.py
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("Is it true that 5 * 2 > 3 * 4?")
# # print(5 * 2 > 3 * 4)
# # print("What is 5 * 2?", 5 * 2)
# # print("What is 3 * 4?", 3 * 4)
# # a=9.6767
# # b=3.4566
# # c=a+b
# # print("c is",c)
# # print("What is the answer to life, the universe, and everything?", int((40 + 30 - 7) * 2 / 3))
# name = "Mattan Griffel";
# orphan_fee = 20.67
# teddy_bear_fee = 12.5
# total = orphan_fee + teddy_bear_fee
# print(f"{name} the total will be {total}")
# # print(name, "the total will be",total)
# # name="""Avani
# # Gokhale"""
# # print(name)
# # name= "Well, the word got around, they said, \"This kid's insane, man\""
# # print(name)
kanye_quote = """My greatest pain in life
is that I will never be able
to see myself perform live."""
print(kanye_quote)
hamilton_quote = 'Well, the word got around, they said, "This kid\'s insane, man"'
print(hamilton_quote)
name = "Mattan Griffel"
orphan_fee = 200
teddy_bear_fee = 121.8
total = orphan_fee + teddy_bear_fee