How to print something in Python

Use the print() function.

name = "ABC";
print(name);

OUTPUT: ABC