Result Size: 625 x 571
demo_string_literal.py:
x
 
#You can use double or single quotes:
print("Hello")
print('Hello')
C:\Users\My Name>python demo_string_literal.py
Hello
Hello