on line 5 at the end of the if statement, you need a colon
on line 11, you used the wrong bracket number
your version --> rchoice=int("input(select room type: "))
new version --> rchoice=int("input(select room type: ")
on line 21, you misspelt the variable type for 'float' which you put as 'foat'
also on line 21, you initialised a variable that had a space in its name, this is not allowed in Python.
also on line 21, you put the quotes after the first bracket float("input... the correct version is float(input("...
on line 27, you need a dot between 'date' and 'today'
you were missing quotes for 'print' statement on lines 32 and 37
one line 4, you initialised a variable named "Checker" which you later referenced in line 49, but it was referenced as "checker". Identifiers are case sensitive so "Checker" and "checker" are different things
I don't have time to point anymore errors out. You could also try running the program and fixing the errors as the compiler told you