What's new

Python Help python please

Yaboku

Forum Veteran
Joined
Oct 12, 2016
Posts
1,936
Reaction
626
Points
677
Pahelp naman po neto. Mejo nakakalito po huhu..
Maraming ty
Untitled (3).png
 

Attachments

First number = 2nd input
Second number = 3rd input
Third number = 1st input

Binaligtad lang, tapos sa average: sum nila / 3
 
Paano po yung code niya ?🥲
Kung nakinig ka sa tinuro sayo, you'll get that easily.. by the way, ayan yung pinakasimpleng question jan sa pinag aaralan nyong language. float() inside input() lang yan actually, and easy to code if talagang naiintindihan mo yung tinuro sayo. No need to example the code itself
 
Kung nakinig ka sa tinuro sayo, you'll get that easily.. by the way, ayan yung pinakasimpleng question jan sa pinag aaralan nyong language. float() inside input() lang yan actually, and easy to code if talagang naiintindihan mo yung tinuro sayo. No need to example the code itself
Thankyou po

Yan po

first_number = float(input("Enter the first number: "))
second_number = float(input("Enter the second number: "))
third_number = float(input("Enter the third number: "))
result = first_number + second_number + third_number
average = result / 3

print("First number is: ", second_number)
print("Second number is: ", third_number)
print("Third number is: ", first_number)
print("The average is ", average)
Thank you po 🥰
 

Similar threads

Back
Top