
Урок открытый
Flashcard
•
Computers
•
6th Grade
•
Easy
Асия Асия
Used 7+ times
FREE Resource
Student preview

5 questions
Show all answers
1.
FLASHCARD QUESTION
Front
print(Привет, мир!)
Back
print("Привет, мир!")
В коде пропущены кавычки
2.
FLASHCARD QUESTION
Front
print("Мой возраст" 12 "лет")
Back
print("Мой возраст", 12, "лет")
Программа не разделяет слова между собой запятыми
3.
FLASHCARD QUESTION
Front
a = input("Введите число 1: ")
b = input("Введите число 2: ") print("Сумма чисел:", a + b)
Back
a = int(input("Введите число 1: "))
b = int(input("Введите число 2: ")) print("Сумма чисел:", a + b )
функция input() возвращает строку, а не число, поэтому её нужно преобразовать в число с помощью int() или float().
4.
FLASHCARD QUESTION
Front
A = input("Введите число: ") print("Введённое число: ", A)
Back
A = int(input("Введите число: ")) print("Введённое число: ", A)
если мы ожидаем, что пользователь введёт число, его нужно преобразовать в тип int или float.
5.
FLASHCARD QUESTION
Front
a = input("Введите первое число: ")
b = input("Введите второе число: ") print("Произведение чисел:", a * b)
Back
a= int(input("Введите первое число: ")) b = int(input("Введите второе число: ")) print("Произведение чисел:", a * b)
необходимо преобразовать введенные значения в числа (добавить int)
Similar Resources on Wayground
15 questions
Y8 - Event Driven Programming
Flashcard
•
7th Grade
15 questions
Math 7 Semester 1 Exam
Flashcard
•
7th Grade
15 questions
Constant of Proportionality
Flashcard
•
7th Grade
4 questions
Тест по математике
Flashcard
•
3rd Grade
15 questions
11.8.24 Functions Review-Math 8
Flashcard
•
8th Grade
4 questions
Z Transform of a Signal
Flashcard
•
KG
10 questions
Week 5 Tuesday: Identifying Functions
Flashcard
•
7th - 8th Grade
10 questions
System and Process Management Basics
Flashcard
•
KG
Popular Resources on Wayground
20 questions
Halloween Trivia
Quiz
•
6th - 8th Grade
25 questions
Multiplication Facts
Quiz
•
5th Grade
15 questions
Order of Operations
Quiz
•
5th Grade
20 questions
Halloween
Quiz
•
5th Grade
16 questions
Halloween
Quiz
•
3rd Grade
12 questions
It's The Great Pumpkin Charlie Brown
Quiz
•
1st - 5th Grade
20 questions
Possessive Nouns
Quiz
•
5th Grade
10 questions
Halloween Traditions and Origins
Interactive video
•
5th - 10th Grade