xxxxxxxxxx
print("hello");print("test");var="welcome"
#we use semicolon when we write more than one code at the same line
xxxxxxxxxx
#semicolons in python!?
print("You're");print("a");print("monster")
#>You're
#>a
#>monster
xxxxxxxxxx
#do multiple non-indented actions in one line
i = 1
if i == 1:
print(i);print('That was the number');print(f'{i} was the number!')