From 4d7a536a3490f06551cd60951211fe6c3be1b6e3 Mon Sep 17 00:00:00 2001 From: munyumunyu <58355418+munyumunyu@users.noreply.github.com> Date: Fri, 11 Dec 2020 18:29:55 +0300 Subject: [PATCH] Update data-types.md in the code section; x = true variable giving an error..char 't' must be 'T'...thx... --- markdown-version/data-types.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/markdown-version/data-types.md b/markdown-version/data-types.md index 9123816..7a0581d 100644 --- a/markdown-version/data-types.md +++ b/markdown-version/data-types.md @@ -9,7 +9,7 @@ * set : It's a collection of unique data: {1, 'apple', 10.5} * frozenset : It's an immutable collection of unique data: frozenset({1, 'apple', 10.5}) ```Python -x = true # Boolean +x = True # Boolean y = "Hello World" # This is a string numbers = [1, 2, 3, 'four'] # this is a list letters = ('a', 'b', 'c', 'd') # this is a tuple