Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

Python Python Basics (Retired) Things That Count Exceptions

Invalid Syntax

This is my code:

user_string = input("What's your word? ")
user_num = input("What's your number? ")

try:
  our_num - int(user_num)
except:
  our_num = float(user_num)

if not "." in user_num:
  print(user_string[our_num])
else:
  ratio = round(len(user_string) * our_num)
  print(user_string[ratio])

#When I run it I get the following syntax error message:

File "percent_letter,py", line 9
   if not '.' in user num:

SyntaxError: invalid syntax

If changed the "." to '.' and get the same error. I've also copied and pasted code from other posts and get the same error.

Please help!! :(

1 Answer

Chris Freeman
MOD
Chris Freeman
Treehouse Moderator 68,423 Points

If user_num is a string, if '.' not in user_num: and if not '.' in user_num: both work.

There appears to be a typo: "-" where a "=" should be:

try:
  our_num = int(user_num) # <-- replaced - with =
except:
  our_num = float(user_num)