Python
Quiz by kin黃偉健
Feel free to use or edit a copy
includes Teacher and Student dashboards
Measure skillsfrom any curriculum
Measure skills
from any curriculum
Tag the questions with any skills you have. Your dashboard will track each student's mastery of each skill.
With a free account, teachers can
- edit the questions
- save a copy for later
- start a class game
- automatically assign follow-up activities based on students’ scores
- assign as homework
- share a link with colleagues
- print as a bubble sheet
6 questions
Show answers
- Q1Which of the following is used to comment a single line in Python?//#--/* */30s
- Q2What is the result of the expression '3 + 4 * 2' in Python?107111430s
- Q3What is the correct way to initialize an empty list in Python?None()[]{}30s
- Q4What is the symbol used for assignment in Python?:=+-30s
- Q5Which of the following is used to print a message to the console in Python?writeprintreaddisplay30s
- Q6What is the output of the following code?x = 5y = 3.7result = x + yprint(result)57158.7230s