Python Examples

From Lucca's Wiki
Revision as of 10:36, 29 August 2025 by 10.0.1.1 (talk)
Jump to navigationJump to search


Calculate the average of three numbers

avg = (num1+num2+num3)/3

Display a variable inside an f string and round it to only have 2 decimals, like with money

monthly_payment = 1000.0000
print(f'The monthly payment is {monthly_payment:.2f}.')