Python Basics
Quiz by Chris Eccles
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
Our brand new solo games combine with your quiz, on the same screen
Correct quiz answers unlock more play!
9 questions
Show answers
- Q160s
- Q2A computer program is a sequence of ??????????, written to perform a task on a computerNumbersInstructionsIdeasFiles60s
- Q3In Python, the print statement outputs text to ...The printerThe internetThe screenA file60s
- Q4What does this python code output to the screen? a = 35 b = 7 c = a+b print c73542c60s
- Q5Which of these statements is TRUE300 > 10*2300 <> 300300 = 10*2300 < 10*260s
- Q6What type of variable are those called players_name and players_team in the code below? players_name = “Wayne Rooney” players_age = 29 players_ team = “Manchester United”StringFloatListInteger60s
- Q7What does this python code output to the screen? a = "Ashton" o = "on" m = "Mersey" print m+o+aAshton on MerseyAshtononMersey"Ashton on Mersey"MerseyonAshton60s
- Q860s
- Q960s