can i add simi semicolon to python code example
Example: semicolon in python
#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!')
#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!')