Skip to content

Latest commit

 

History

History
3 lines (3 loc) · 151 Bytes

print_vs_print_function.md

File metadata and controls

3 lines (3 loc) · 151 Bytes

The difference can be shown in a pretty straightforward way: print(2, 3) in Python2 outputs (2, 3), whereas print(2, 3) in Python3 outputs 2 3.