![How to output average grade in python](https://img.php.cn/upload/article/000/000/037/5d43cba99ffb5707.jpg)
The first step is to open the local python IDE tool and create a new python file named test6.py.
![1564723727236765.png How to output average grade in python](https://img.php.cn/upload/image/792/782/206/1564723727236765.png)
![1564723808494250.png How to output average grade in python](https://img.php.cn/upload/image/736/324/338/1564723808494250.png)
![1564723833675968.png How to output average grade in python](https://img.php.cn/upload/image/602/649/305/1564723833675968.png)
##Related recommendations: "
Python Video Tutorial"
The second step is to define an average that prompts the user to enter how many numbers to calculate.
![1564723843485630.png How to output average grade in python](https://img.php.cn/upload/image/845/260/112/1564723843485630.png)
The third step is to initialize the value of sum. Note that it is a good coding practice to give an initial value when defining a variable.
![1564723912564916.png How to output average grade in python](https://img.php.cn/upload/image/393/401/549/1564723912564916.png)
#The fourth step is to loop through the numbers to be calculated and calculate the sum value.
![1564723936486585.png How to output average grade in python](https://img.php.cn/upload/image/486/783/883/1564723936486585.png)
The fifth step is to calculate the average and output it. Use the "sum/quantity" formula to calculate the average.
![1564723955139479.png How to output average grade in python](https://img.php.cn/upload/image/374/145/505/1564723955139479.png)
The sixth step, after the coding is completed, remember to save and then debug and run. Press the F5 key or click "run"->"run model" in the menu bar to run the program.
![1564723987655776.png How to output average grade in python](https://img.php.cn/upload/image/638/700/769/1564723987655776.png)
![1564724005752191.png How to output average grade in python](https://img.php.cn/upload/image/456/509/742/1564724005752191.png)
The above is the detailed content of How to output average grade in python. For more information, please follow other related articles on the PHP Chinese website!