We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d70347f commit f77e0daCopy full SHA for f77e0da
Exercise/Exercise1.py
@@ -1,7 +1,7 @@
1
def main():
2
- food = 'spam'
+ food = 'Pizza'
3
4
- if food == 'spam':
+ if food == 'Pizza':
5
print('Ummmm, my favorite!')
6
print('I feel like saying it 100 times...')
7
print(100 * (food + '! '))
Exercise/Exercise2.py
@@ -1,9 +1,9 @@
- food='Pizza'
+ food='Burger'
else:
- print("No, I won't have it. I want spam!")
+ print("No, I won't have it. I want Pizza!")
8
if __name__ == '__main__':
9
main()
0 commit comments