# unpack list with space
print(*['jdoe is', 42, 'years old'])
# seprator
print('node', 'child', 'child', sep=' -> ')
# prevent line break
print('The second sentence', end='. ')
# Note: Don’t try using print() for writing binary data as it’s only well suited for text.
Created
August 20, 2019 09:25
-
-
Save yzdann/6fb713889711b70503b5b6670428dd26 to your computer and use it in GitHub Desktop.