Python Concepts Flashcards
1
Q
What does the following produce on the screen:
Countries = [“France”,”Germany”,”Spain”]
A
“France”,”Germany”,”Spain”
2
Q
What does the following produce on the screen:
Age = 32
A
Nothing. Age is the variable which stores the integer 32. No print function has been used.