forked from ariahendrawan713/python
- Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path2.py
More file actions
Latest commit
22 lines (15 loc) · 429 Bytes
/
Copy path2.py
File metadata and controls
22 lines (15 loc) · 429 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
types_of_people=10
x=f"There are {types_of_people} types of people."
binary="binary"
do_not="don't"
y=f"Those who know {binary} and those who {do_not}."
print(x)
print(y)
print(f"I said: {x}")
print(f"I also said: '{y}'")
hilarious=False
joke_evaluation="Isn't that joke so funny?! {}"
print(joke_evaluation.format(hilarious))
w="This is the left side of..."
e="a string with a right side."
print(w+e)