Skip to content

Instantly share code, notes, and snippets.

@filipgorczynski
Last active April 20, 2018 11:16
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save filipgorczynski/7aa4c5f63661cfdbfa365973af72d2e6 to your computer and use it in GitHub Desktop.
Save filipgorczynski/7aa4c5f63661cfdbfa365973af72d2e6 to your computer and use it in GitHub Desktop.
>>> print("Witaj świecie")
Witaj świecie
>>> print("Witaj 'świecie'")
Witaj 'świecie'
>>> print("Witaj \"świecie\"")
Witaj "świecie"
>>> print('Witaj świecie')
Witaj świecie
>>> print('Witaj "świecie"')
Witaj "świecie"
>>> print("""Witaj 
świecie""")
Witaj
świecie
>>> print('''Witaj 
świecie''')
Witaj
świecie
>>> print("Witaj\t\t\t\n\t\t\t\tświecie")
Witaj
świecie
>>> print('Witaj\t\t\t\n\t\t\t\tświecie')
Witaj
świecie
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment