💻
What is code?
Code is instructions for the computer, written as text. The computer executes them one after another, line by line.
Each line is one action: "print this", "do that", "repeat this". Python is one of the friendliest languages because its syntax is close to English.
Each line is one action: "print this", "do that", "repeat this". Python is one of the friendliest languages because its syntax is close to English.
print("Hello, World!") # это одна инструкция
name = "Anna" # это вторая
print(name) # это третья1 / 8