Зміст курсу
Вступ до Python
Вступ до Python
Перші Кроки
Ласкаво просимо, учень!
Ласкаво просимо на цей модуль Python! Ми раді вітати тебе в цій подорожі з кодуванням. Не хвилюйся, якщо ти новачок у Python або програмуванні. Почнімо з того, щоб зрозуміти, що таке Python.
Python is a high-level, interpreted programming language. High-level languages use abstract syntax that is easy for humans to understand but cannot be directly interpreted by machines.
Let's dive in and print our first message using Python. We'll use the print()
function for this. When you want to print specific text, just wrap it in quotation marks, like "..."
or '...'
. If you don't, Python will assume you're referring to a variable (but we'll get to that later).
To print a sentence, use the following code:
print("Some message")
Swipe to show code editor
Your challenge? Print "Hello world!"
in the console.
Once you've completed this task, click the button below the code to check your solution.
Дякуємо за ваш відгук!
Перші Кроки
Ласкаво просимо, учень!
Ласкаво просимо на цей модуль Python! Ми раді вітати тебе в цій подорожі з кодуванням. Не хвилюйся, якщо ти новачок у Python або програмуванні. Почнімо з того, щоб зрозуміти, що таке Python.
Python is a high-level, interpreted programming language. High-level languages use abstract syntax that is easy for humans to understand but cannot be directly interpreted by machines.
Let's dive in and print our first message using Python. We'll use the print()
function for this. When you want to print specific text, just wrap it in quotation marks, like "..."
or '...'
. If you don't, Python will assume you're referring to a variable (but we'll get to that later).
To print a sentence, use the following code:
print("Some message")
Swipe to show code editor
Your challenge? Print "Hello world!"
in the console.
Once you've completed this task, click the button below the code to check your solution.
Дякуємо за ваш відгук!