Python Examples: Difference between revisions
From Lucca's Wiki
Jump to navigationJump to search
Created page with "Calculate the average of three numbers avg = float((num1+num2+num3)/3)" |
No edit summary |
||
Line 1: | Line 1: | ||
<hr> | |||
Calculate the average of three numbers | Calculate the average of three numbers | ||
avg = float((num1+num2+num3)/3) | avg = float((num1+num2+num3)/3) |
Revision as of 01:46, 22 August 2025
Calculate the average of three numbers
avg = float((num1+num2+num3)/3)