
Python lesson 11
Quiz by Anya Pivkina
Tag the questions with any skills you have. Your dashboard will track each student's mastery of each skill.
Which operator is used to display information on the screen?
How do you declare a variable in Python?
What does the == operator do?
What is the data type of the variable num = 10.5?
What will the following code output? print(10 // 3)
Which symbol is used for a new line in Python?
Which of these loops is used to iterate over list elements?
How do you create a list in Python?
What does the .append() method do in a list?
How do you get the length of a list in Python?
How do you remove an element by index from a list?
How do you correctly define a function in Python?