Skip to content

Instantly share code, notes, and snippets.

@Sinitca-Aleksandr
Created January 27, 2016 10:27
Show Gist options
  • Select an option

  • Save Sinitca-Aleksandr/2f4cb181a5741fcf9e1b to your computer and use it in GitHub Desktop.

Select an option

Save Sinitca-Aleksandr/2f4cb181a5741fcf9e1b to your computer and use it in GitHub Desktop.
# Вывод текстовой строки
print("Hello World")
# Для вывода нескольких строк можно использовать спецсимвол \n
print("First Line\nSecond Line")
# Вывод переменных
x = 5
print(x)
# Множественный вывод:
x = 10
y = 15
print(x, " and ", y)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment