Files
hello-python/script.py
2022-06-10 09:43:44 +02:00

35 lines
461 B
Python

"""
multiline
comments
1
2
"""
print("hello world!")
hello = 'hello2'
world = 'world2'
x = 1
y = 2
z = x + y
a = hello + world
if a == 'hello2world2':
print a , z
mylist = [2,3,4,5]
print('ich esse %s kinder' % mylist)
number = 11.0 / 2.0 + 8.0 * 4.0
print number
#without comma
numberweird = 11 / 2 + 8 * 4
print numberweird
#5hoch2
squared = 5**2
print squared
cubed = 3**3
print cubed
lotsofhellow = 'hello ' *10
print lotsofhellow
print([1,2,3] * 3)