Python Forum
Non Grade/School Help - PLEASE
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Non Grade/School Help - PLEASE
#8
Thanks so much. I got thru the rest successfully. This was my last issue out of the 20 + problems.

Make sure you have read Chapter 6 from the Think Python book.
Write a boolean function that receives a number as a parameter and checks if it's even or odd, and display an appropropriate method.

Here is the expected output:
Sample run 1:
Enter a number: 23 Your number is odd!
Sample run 2:
Enter a number: 44 Your number is even!

# check if the input number is odd or even
# a number is even if division by 2 gives a reminder of 0
# if the remainder is 1, it is an odd number

number = int(input("Enter a number: "))
if (number % 2) == 0:
return Your number is even!
else:
return Your number is odd!

File "<ipython-input-4-3a7b155c37c3>", line 7 return Your number is even! ^ SyntaxError: invalid syntax

Comments: Again, this code needs to be within a function.
buran write Jun-18-2021, 05:50 PM:
Please, use proper tags when post code, traceback, output, etc.
See BBcode help for more info.
Reply


Messages In This Thread
Non Grade/School Help - PLEASE - by gbyrne12 - Jun-17-2021, 09:29 PM
RE: Non Grade/School Help - PLEASE - by snippsat - Jun-17-2021, 09:52 PM
RE: Non Grade/School Help - PLEASE - by gbyrne12 - Jun-17-2021, 10:08 PM
RE: Non Grade/School Help - PLEASE - by snippsat - Jun-17-2021, 10:42 PM
RE: Non Grade/School Help - PLEASE - by gbyrne12 - Jun-18-2021, 12:53 AM
RE: Non Grade/School Help - PLEASE - by buran - Jun-18-2021, 04:50 AM
RE: Non Grade/School Help - PLEASE - by snippsat - Jun-18-2021, 11:37 AM
RE: Non Grade/School Help - PLEASE - by gbyrne12 - Jun-18-2021, 11:59 AM
RE: Non Grade/School Help - PLEASE - by snippsat - Jun-19-2021, 07:31 PM

Possibly Related Threads…
Thread Author Replies Views Last Post
  Simple Method to calculate average and grade ajitnayak1987 8 6,356 Apr-28-2022, 06:26 AM
Last Post: rayansaqer
  Calculating Grade Average IstvanCH 5 5,096 Jan-27-2019, 04:42 PM
Last Post: aakashjha001
  Student grade program help debug ccm1776 3 5,173 Nov-14-2018, 02:41 AM
Last Post: stullis
  Grade Loop dtweaponx 8 12,418 Oct-17-2017, 02:01 PM
Last Post: buran
  Help? Letter Grade assignment.. zepel 3 4,615 Apr-23-2017, 12:47 PM
Last Post: idontreallywolf

Forum Jump:

User Panel Messages

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