We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 9525910 + adf99e7 commit 2ee4381Copy full SHA for 2ee4381
1 file changed
python/lesson2/tutorial.md
@@ -78,8 +78,10 @@ not.
78
Python is what's called a "typed language". This is to say that there are
79
multiple *types* of objects that you work with in Python, and they don't all
80
act the same way. The three types you've learnt so far are *integers* (`int`),
81
-*floats* (`float`), and *strings* (`str`). This is important to know because
82
-every Python programmer has tried to do this at least once in their career:
+*floats* (`float`), and *strings* (`str`). Integers are whole numbers, floats
+are numbers with a decimal point, and strings are any number of characters
83
+surrounded be either "" or ''. This is important to know because every Python
84
+programmer has tried to do this at least once in their career:
85
86
"7" + 8
87
0 commit comments