Hello, I’m working on this task:
Create a string variable named ‘i_swear’ with the value ‘I am a member of the resistance’ and print it 5 times, each on a new line.
Here is my code:
"i_swear" = "i am a member of the resistence"
print(i_swear)
print(i_swear)
print(i_swear)
print(i_swear)
print(i_swear)
Can anyone please help me to solve it?