Which of the following is NOT an advantage to the Python programming language?
Name the two basic modes of IDLE.
What is a sequence of characters called?
What are a set of characters that allow you to insert special characters into a string?
What type of value will the input function return to you?
An error that will not crash your program, but produces unintended results is...
Which of the following is an assignment operator?
Which of the following is not one of the three logical operators?
Which of the following definitions describes a 'block' of code?
Part of the while loop which is used in the condition and compared to some other value or values—will need to initialize this before the loop.
A type of immutable sequence that can contain elements of any type (uses parentheses).
Which is a difference between a tuple and a list?
Write a for loop that will count from 10 to 40 by 2’s (assume proper tabbing).
How would I print out each element in the following tuple (assume proper tabbing)? sox = (“Thome, “Anderson, “Ramirez, “Pierzynski)
What will the following code display (assume proper tabbing)? equipment = (dagger, 2), (sword, 12), (shield, 9) \ for item in equipment: \ name, cost = item \ print(cost)
Which of the following can be used to count to a certain number.
What will the following code display (assume proper tabbing)? count = 0 \ while count != 10: \ print (count,end='') \ count += 2
If you want to perform true division in an operation, which function will help you convert values?
When writing a menu-based program, the menu structure should be...
Which slice will turn the sting 'summer vacation' into 'summer'? (assume brackets are present)
Teachers: Create FREE classroom games with your questions Click for more info!
©2007-2024 Review Game Zone | About | Privacy | Contact | Terms | Site Map
©2007-2024 Review Game Zone | About | Privacy | Contact | Terms | Site Map