
Урок открытый

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
4 questions
Числа и дроби

Flashcard
•
4th Grade
10 questions
Циклы while for

Flashcard
•
7th Grade
12 questions
Python Intro

Flashcard
•
7th - 8th Grade
10 questions
Python Basics for Grade 6

Flashcard
•
6th Grade
8 questions
Python Variables

Flashcard
•
6th Grade
8 questions
User Input in Python

Flashcard
•
8th Grade
4 questions
Властивості додавання

Flashcard
•
6th Grade
10 questions
Input & Output Devices

Flashcard
•
6th - 8th Grade
Popular Resources on Wayground
10 questions
Video Games

Quiz
•
6th - 12th Grade
20 questions
Brand Labels

Quiz
•
5th - 12th Grade
15 questions
Core 4 of Customer Service - Student Edition

Quiz
•
6th - 8th Grade
15 questions
What is Bullying?- Bullying Lesson Series 6-12

Lesson
•
11th Grade
25 questions
Multiplication Facts

Quiz
•
5th Grade
15 questions
Subtracting Integers

Quiz
•
7th Grade
22 questions
Adding Integers

Quiz
•
6th Grade
10 questions
Exploring Digital Citizenship Essentials

Interactive video
•
6th - 10th Grade
Discover more resources for Computers
10 questions
Exploring Digital Citizenship Essentials

Interactive video
•
6th - 10th Grade
20 questions
typing

Quiz
•
6th Grade
18 questions
Company Logos

Quiz
•
6th - 8th Grade
10 questions
Proper Keyboarding Techniques

Interactive video
•
6th - 10th Grade
14 questions
Inputs and Outputs: Computer Science Intro

Lesson
•
5th - 9th Grade
20 questions
Input, Output, Processing or Storage

Quiz
•
5th - 6th Grade