Đoạn chương trình sau có lỗi tại một dòng lệnh. Theo em, đó là lỗi ở câu lệnh nào:
# program to display student's marks from record
student_name = 'Soyuj'
marks = {'James': 90, 'Jules': 55, 'Arthur': 77}
for student in marks:
if student == student_name:
print(marks(student))
break
else:
print('No entry with that name found.')
- Sai kí hiệu chú thích.
- Sai khi khai báo danh sách.
- Sai khi gọi tới phần tử của danh sách.
- Không có lỗi sai ở câu lệnh nào.