summaryrefslogtreecommitdiff
path: root/strings/main.py
blob: 71f318db35e4884e4e3be4381fcdadbea127d390 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# 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)

a, b = 3, 4
print(b, b, b, b, a, a, b)