This is the code that I made:
number = input("What day number does your anime come out? ")
epi = input("How many episodes are there? ")
for epi in range(12):
print(number)
number + 7
the entire error message is:
Traceback (most recent call last):
File "/Users/kevinforstner/anime release calc.py", line 6, in <module>
number + 7
TypeError: can only concatenate str (not "int") to str