Home / Python Strings / How to Display a String Literal in Python In this example we will show how to display a string literal with the print() function in Python. Source Code print("Python") print('Python') Output: Python Python