0
should we need to use semicolo in pythonđ¤
no need know
3 Answers
+ 2
Python does not require semi-colons to terminate statements.Â
+ 1
kk tkuu
+ 1
We are not required to use semicolons in python, since command termination is a newline character. But if we really need it, we can do it like this:
A common example:
print ('test')
print ('lol')
Example with semicolon:
print ('test'); print ('lol')