News

print(" The average of marks is ", (X+Y+Z)/3) print(" The total of marks is ", X+Y+Z) ...
Method 3: Using the ‘statistics’ Module Python has a built-in statistics module which provides several statistical functions, including one to calculate the average. To use this module, you need to ...