From 27908f7f797d78e227c4a9c70d10a1c110450f67 Mon Sep 17 00:00:00 2001 From: Mike Capps Date: Wed, 7 Feb 2024 10:50:39 -0500 Subject: [PATCH] Update 03-Math-and-Random-Module.ipynb fixed typo mistake --- 12-Advanced Python Modules/03-Math-and-Random-Module.ipynb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/12-Advanced Python Modules/03-Math-and-Random-Module.ipynb b/12-Advanced Python Modules/03-Math-and-Random-Module.ipynb index d9edd947d..4cbb7baf1 100644 --- a/12-Advanced Python Modules/03-Math-and-Random-Module.ipynb +++ b/12-Advanced Python Modules/03-Math-and-Random-Module.ipynb @@ -1145,7 +1145,7 @@ } ], "source": [ - "# Continuous, random picks a value between a and b, each value has equal change of being picked.\n", + "# Continuous, random picks a value between a and b, each value has equal chance of being picked.\n", "random.uniform(a=0,b=100)" ] },