This is a part of an "Oregon Trail" remake that I am making. Here is the bit of code with the problem:
if option == '3':
print('Clothes cost: 2 per set')
print('Recomended: 12 sets')
try:
clothnum = int(input('How many sets of clothes: '))
clothmon = clothnum * 2
except:
print('')
And on the try:
statement (on the colon to be exact) it raises this error:
TabError: inconsistent use of tabs and spaces in indentation
I checked the whole code, and I can't see anything wrong with the indentation.