From df0921240c1aa3e873d8a1c73ce441f8e5a5c477 Mon Sep 17 00:00:00 2001 From: PeaceNira Date: Fri, 8 Nov 2024 19:32:54 +0000 Subject: [PATCH] unicode issue --- 1_variables.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/1_variables.py b/1_variables.py index 5d34fca..f2e18c7 100644 --- a/1_variables.py +++ b/1_variables.py @@ -25,16 +25,16 @@ text = "Hello, World!" boolean = True # List: A list stores a collection of values in a specific order, and the values can be of any type. -# Lists are mutable, meaning they can be changed after they’re created (e.g., adding or removing items). +# Lists are mutable, meaning they can be changed after they're created (e.g., adding or removing items). a_list = ["Apple", 64, 1.1, True] # Tuple: A tuple is similar to a list in that it can store multiple values, but it is immutable, -# meaning once it’s created, it cannot be changed. +# meaning once it's created, it cannot be changed. a_tuple = ("Apple", 54, 11, 1.2, False) #dict: stores a value with a key # Dictionaries (dict) are extremely useful, they allow you to map a name (key) to a value. -# they are mutable, meaning they can be changed after they’re created (e.g., adding or removing items). +# they are mutable, meaning they can be changed after they're created (e.g., adding or removing items). dictionary = { "Jan" : "January", "Feb" : "February",