Multiple choice

If my_variable = "food", what is the data type of my_variable?

  1. Integer

  2. Word

  3. String

  4. Boolean

Reveal answer Fill a bubble to check yourself
C Correct answer
Explanation

In Python, any sequence of characters enclosed in quotes is considered a string. Integers are whole numbers, and Booleans are True or False values.