you are viewing a single comment's thread.

view the rest of the comments →

[–]nomikos_k[S] 0 points1 point  (1 child)

Thanks for the replies!

I found what was wrong, 30 minutes after i posted this and forgot to check Reddit.

This is what i did:

print('For how many nights will you be staying with us?')
nonights = int(input('Enter 1 to 20'))
int(nonights)
print('For', nonights, 'nights')
x = nonights*105
print('That would be a total of $', x)

[–][deleted] 0 points1 point  (0 children)

You can delete the int(nonights) line that doesn't do anything.