From 861bf23606c37e5451b93574a6f21b7510dd8e3e Mon Sep 17 00:00:00 2001 From: David Beazley Date: Fri, 29 May 2020 09:00:40 -0500 Subject: [PATCH] Fixed typo --- Notes/01_Introduction/02_Hello_world.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Notes/01_Introduction/02_Hello_world.md b/Notes/01_Introduction/02_Hello_world.md index f2889cf..444b2d8 100644 --- a/Notes/01_Introduction/02_Hello_world.md +++ b/Notes/01_Introduction/02_Hello_world.md @@ -203,7 +203,7 @@ is associated with the value on the right hand side, not name of the variable. ```python height = 442 # An integer -height = 442 # Floating point +height = 442.0 # Floating point height = 'Really tall' # A string ```