Python Forum
Please help. Simple homework
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Please help. Simple homework
#1
Exercise 1:

What’s wrong with this code?

The following code should read an integer into the variable rating:

rating = input ('Enter an integer rating between 1 and 10')


Exercise 2:

Replace *** in the following code with a statement that will print the message 'Congratulations! Your grade of 91 earns you an A in this course'.

Your statement should print the value stored in the variable grade:

grade = 91

if grade >= 90:

***

Edit: I know this is day one stuff. I've tried figuring it out, but the phrasing is ambiguous to me. It's an online course, and the professor is very unhelpful. I'm not just looking for answers, but would appreciate an explanation so I can actually learn it. Thanks!
Reply
#2
What exactly are you wanting help with? Post what you have tried.
Reply
#3
So for the first exercise, I've tried a variety of things, but I don't know exactly what's being asked. One thing I've tried is:
rating = input(int([x])
rating = input(int("Enter an integer rating between 1 and 10"))

The second I've tried:
>>> grade = 91
>>> if grade >= 90:
print: (ind('Congratulations! Your grade of 91 earns you an A in this course')

It seems that no matter what I type there, it just drops down. Not understanding how to execute the command

>>> grade = 91
>>> if grade >=90:
91 = float( input( "Congratulations! Your grade of 91 earns you an A in this course : " ) )

is this closer?
Reply
#4
For the first one you are close, you just need to put it all in the int().
rating = int(input('Enter an integer rating between 1 and 10'))
print(rating, type(rating))
For the second, there are a number of errors. I think you just need a basic print() statement print("Hello World").
Reply


Possibly Related Threads…
Thread Author Replies Views Last Post
  Where can I get loooads of simple homework questions for kids? omar 1 992 Nov-09-2022, 02:33 PM
Last Post: Larz60+
  [TkInter]Simple Python Homework zaji_123 4 4,092 Jan-01-2021, 07:09 PM
Last Post: EliesBe
  i've got these very simple homework HakolYahol 7 5,519 Aug-12-2018, 10:18 AM
Last Post: HakolYahol
  Homework Help - Simple Grading System Segovia 7 7,818 Jul-24-2018, 10:55 PM
Last Post: Segovia

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020