From 33eca17943f0340f3920759cd747bcd71a28f521 Mon Sep 17 00:00:00 2001 From: whoami <72305591+Admin-1889@users.noreply.github.com> Date: Wed, 28 Oct 2020 17:00:49 +0800 Subject: [PATCH] Update t13_mean1.py --- t13_mean1.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/t13_mean1.py b/t13_mean1.py index 842f670..e8cee29 100644 --- a/t13_mean1.py +++ b/t13_mean1.py @@ -1,6 +1,6 @@ # Find the mean of n numbers -n = int(input("Enter number of numbers: ")) +n = int(input("How many numbers?: ")) numbers = [] total = 0 for i in range(n):