Created
January 27, 2016 10:27
-
-
Save Sinitca-Aleksandr/2f4cb181a5741fcf9e1b to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Вывод текстовой строки | |
| 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