Write a program to replace elements with zeros
student = [7,8,9,10,7 ] print(len(student)) n = len(student) for item in range(n): student[item] = 0 print(student)
Need a fast expert's response?
and get a quick answer at the best price
for any assignment or question with DETAILED EXPLANATIONS!
Comments
Leave a comment