Welcome to the Treehouse Community
The Treehouse Community is a meeting place for developers, designers, and programmers of all backgrounds and skill levels to get support. Collaborate here on code errors or bugs that you need feedback on, or asking for an extra set of eyes on your latest project. Join thousands of Treehouse students and alumni in the community today. (Note: Only Treehouse students can comment or ask questions, but non-students are welcome to browse our conversations.)
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and a supportive community. Start your free trial today.

Christiian Allen
Courses Plus Student 859 PointsHow can I do this properly?
user_grade = input('what grade are') user_grade = int('what grade was') print("What was your grade?")
('If the user_grade is >= 90 then user_grade gets input = a') print("The grade is an A") ('if the user_grade is < 90 then user_grade input = f") print("The grade is an f"
????
Have the user enter a number representing the grade (0-100) Convert the number grade to a letter grade
favorite_color = input("What is your favorite color? ")
1 Answer

Christiian Allen
Courses Plus Student 859 PointsThank you very much .
Kevin Esther
8,539 PointsKevin Esther
8,539 PointsHi Christiian,
I give it ago. I used pandas data frames to create a lookup table so I could iterate the data frame to return the grade from the user.
It would need some checking so user could only submit integer 1 to 100 etc...