summaryrefslogtreecommitdiff
path: root/strings/main.py
blob: ae9f7bce32b23872a6bdaf25be218c266bee8221 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# https://www.learnpython.org/en/Variables_and_Types

mystring = 'hello'
print(mystring)

mystring = "jello"
print(mystring)

print("Don't worry about 🍺")

one = 1
two = 2
three = one + two
print(three)

hello = "hello"
world = "world"
helloworld = hello + " " + world
print(helloworld)