print("Hello World!") print('Hello World!') # Both couple of single quotes or couple of double quotes will do the work # But it will give a "SyntaxError" massage if you mix them # Output - # Hello World! # Hello World!