I have This code For Example and I want to print the result once time
number = [1, 2, 3, 4, 5]
for i in number:
print(f'The Number Is => {i}')
EX: The Number Is => 0 Then 0 become 1 and 2 etc..
I have This code For Example and I want to print the result once time
number = [1, 2, 3, 4, 5]
for i in number:
print(f'The Number Is => {i}')
EX: The Number Is => 0 Then 0 become 1 and 2 etc..