#semicolons in python!?
print("You're");print("a");print("monster")
#>You're
#>a
#>monster
print("hello");print("test");var="welcome"
#we use semicolon when we write more than one code at the same line
#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!')
x=1; y=1