0
should we need to use semicolo in python🤔
no need know
3 Réponses
+ 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')





