From 91cf199c6c484affeb7098d97e588c918a5e937b Mon Sep 17 00:00:00 2001 From: Michal Petrik Date: Sat, 14 May 2022 16:18:59 +0200 Subject: [PATCH] Update 10-exercise.md --- .../020-basic-data-types/10-exercise.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/website/content/02-introduction-to-python/020-basic-data-types/10-exercise.md b/website/content/02-introduction-to-python/020-basic-data-types/10-exercise.md index 6125d85..562729f 100644 --- a/website/content/02-introduction-to-python/020-basic-data-types/10-exercise.md +++ b/website/content/02-introduction-to-python/020-basic-data-types/10-exercise.md @@ -22,7 +22,7 @@ List the type of the following variables using the `type()` function. ### Numbers -Calculate the amount of rent you pay daily, by taking your monthly rent and diving it by 30. +Calculate the amount of rent you pay daily, by taking your monthly rent and dividing it by 30. ```python >>> rent = 480 @@ -73,4 +73,4 @@ Python has a few built-in functions to help you if you get stuck. `type()` tells >>> type(name) -``` \ No newline at end of file +```