185k views
5 votes
Choose the correct statement.

a. Variables only represent strings in Python.
b. The same variable in Python can be represented in either upper or lower case.
c. Variables in Python can be initialized using the equals sign (=).
d. New variables always start out as zero.

1 Answer

1 vote

Final answer:

Variables in Python can represent many data types, are case-sensitive, and can be initialized with the equals sign.

Step-by-step explanation:

The correct statement regarding variables in Python is: c. Variables in Python can be initialized using the equals sign (=). Variables in Python are not limited to representing strings; they can represent various data types. Variable names are case-sensitive, which means the same variable name in different cases would be considered as different variables. Variables do not start out as zero; they must be initialized, which can be done using the equals sign.

User Spmason
by
7.9k points