menu search
brightness_auto
more_vert
3 1

Accept 10 numbers from the user and display their average.

Topic Python Programming
Type Python Program
Class 10
thumb_up_off_alt 3 like thumb_down_off_alt 0 dislike

1 Answer

more_vert
0

#accept 10 numbers from the user and display their average

no1= int(input("Enter 1 number:"))

no2=int(input("Enter 2 number:"))

no3=int(input("Enter 3 number:"))

s= no1+no2+no3

a=(no1+no2+no3)/3

print(s)

print(a)


Study more about Python at Python Class 10

thumb_up_off_alt 0 like thumb_down_off_alt 0 dislike

Related questions

thumb_up_off_alt 4 like thumb_down_off_alt 0 dislike
0 answers
thumb_up_off_alt 2 like thumb_down_off_alt 0 dislike
1 answer
thumb_up_off_alt 3 like thumb_down_off_alt 0 dislike
1 answer
thumb_up_off_alt 3 like thumb_down_off_alt 0 dislike
0 answers
thumb_up_off_alt 3 like thumb_down_off_alt 0 dislike
0 answers
thumb_up_off_alt 3 like thumb_down_off_alt 0 dislike
1 answer
thumb_up_off_alt 3 like thumb_down_off_alt 0 dislike
1 answer
thumb_up_off_alt 3 like thumb_down_off_alt 0 dislike
1 answer
thumb_up_off_alt 2 like thumb_down_off_alt 0 dislike
1 answer
thumb_up_off_alt 2 like thumb_down_off_alt 0 dislike
1 answer
...