1
2
3
РУС
100

He created Python

Guido Von Rossum

100

Are they the same: Cat and cat

NO

100

What application did we use for python coding?

Thonny, trinket.io

100
Что делает знак #?

Комментарии к тексту программы

200

What data type is text?

strings

200

What data type is 3.56?

float

200

What data type is the number 3?

int 
200
Какая команда используется для ввода пользователем данных (цифры, буквы)
input 
300

What is the result of: print("5"+"3")

53

300

What is the result of: print(10%5)

0

300

What are the 3 selection commands you learned?

if, elif, else

300

Как напечатать пустую строку в Python?

print()

400

Which is incorrect variable name:

4flowers

twoflowers

sendingflowers

4flowers

400

4**2/4 is equal to this number

4

400

What is 10//4/2?

1

400
Какой символ стоит после оператора if?
Двоеточие 
500

What will be displayed on the console:

print("Hello! ")

#print("Nice to meet you!)

Hello! 

#print("Nice to meet you!) is a line of comment 

(# symbol is for comment) 

500

What is wrong with the following code:

userName = input(Please enter your name: )

It shoudl be userName = input("Please enter your name: ")

500

What is the result of the following code: print((6**2 - 4 * 2) % 5)

3

500

Что будет на выходе следующего блока кода:

count = 1

while (count < 5):

      print("Рад тебя видеть")

      count = count + 1

Рад тебя видеть!

Рад тебя видеть!

Рад тебя видеть!

Рад тебя видеть!

M
e
n
u