Calculate the average of 5 number in Python Leave a Comment / Python Programs / By brcinstitute111@gmail.com View All Python Programs Source Code n1=21n2=7n3=67n4=45n5=43avg=(n1+n2+n3+n4+n5)/5print(“Average of 5 Number is : “, avg) Output Average of 5 Number is : 36.6 View All Python Programs