QuestionQ27
Data SerializationGiven the following Python script:
a = [1,2,3,4,5,6,7,8,9]
print(a[0])
What does this print command output?
- A 1
- B 2
- C 7
- D 9
Given the following Python script:
a = [1,2,3,4,5,6,7,8,9]
print(a[0])
What does this print command output?
Community Discussion