Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8602881
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 12, 20262026-06-12T02:11:44+00:00 2026-06-12T02:11:44+00:00

writing a basic math program to help me understand python math calculation. if I

  • 0

writing a basic math program to help me understand python math calculation.

if I write

x = 15 + 30 + 45
print(x)

I get

90

if I write

x = 90 / 3
print(x)

I get

30.0

but if I write

def avg3():
    print("This program will calculate the average of 3 scores")
    scores = eval(input("enter 3 scores: "))
    average = scores[0] + scores[1] + scores[2] / 3
    avg = str(average)
    print("The average of the input scores is " + avg + ".")

avg3()

and input

15, 30, 45

what is returned is

The average of the input scores is 60.0.

of course I’m expecting 30. What’s going on here?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-12T02:11:45+00:00Added an answer on June 12, 2026 at 2:11 am

    You need parentheses in your average, like this:

    average = (scores[0] + scores[1] + scores[2]) / 3
    

    Otherwise, you are just dividing scores[2] by 3.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I am writing a basic program in Python that prompts the user to enter
I'm writing a basic war-driving program. I have gotten it to loop the command
I'm a newbie with a little experience writing in BASIC, Python and, of all
I was thinking about writing generic functions for basic Math operations such as Min,
When writing a basic c program. #include <stdio.h> main(){ printf(program); } Is the definition
I'm writing a basic UNIX program that involves processes sending messages to each other.
I'm writing a basic chess program to calculate how many sets you can make
I am writing a basic timer program with Java, and in the program I
I am writing a basic windows program and I am looking for some basic
I'm currently writing a basic program to evaluate mathematical expressions which I will then

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.