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 trialChristiian 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,551 PointsKevin Esther
8,551 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...