C-16-Q133mediumsingle_mcq
Which of the following pairs is treated as a SAME variable by Python?
Which of the following pairs is treated as a SAME variable by Python?
- a
Ageandage - b
total_marksandtotal_marks - c
RollandROLL - d
name1andName1
ব্যাখ্যা
Python variable names are case-sensitive, so only identically spelled-and-cased names refer to the same variable. total_marks and total_marks match exactly in both spelling and case, while the other pairs differ in capitalization.