From 678a6bc61ee1a94041bfabb5ee6b685fe82cbea6 Mon Sep 17 00:00:00 2001 From: Soua Date: Tue, 22 Oct 2019 16:03:46 -0500 Subject: [PATCH] For the glory of PEP 8 --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index cbb6387..75aa720 100644 --- a/README.md +++ b/README.md @@ -1855,7 +1855,7 @@ for char in 'pizza': ``` First you ask the user for the amount of numbers that will be use. Use a while loop that runs until amount_of_numbers becomes 0 through subtracting amount_of_numbers by one each loop. In the while loop you want ask the user for a number which will be added a variable each time the loop runs. -def returnsum(): +def return_sum(): amount_of_numbers = int(input("How many numbers? ")) total_sum = 0 while amount_of_numbers != 0: