Answer:
X = [12, 67, 89, 34, 56, 90, 67]
for i in range (len(X)):
if (X[i] == 34):
print(X[i])
print("100")
else:
Step-by-step explanation:
Kind of a ugly hack because I'm not all too familiar with python, but it gets the job done :^)
5.7m questions
7.4m answers