Skip to content

Commit 8967a8b

Browse files
committed
distinguish operators and functions
feels a bit like nitpicking, but hopefully not too difficult an extra concept to add?
1 parent 7d685ba commit 8967a8b

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

python_introduction/README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,8 @@ OK, enough of strings. So far you've learned about:
8989

9090
- __the prompt__ - typing commands (code) into the Python prompt results in answers in Python
9191
- __numbers and strings__ - in Python numbers are used for math and strings for text objects
92-
- __functions__ - are actions in Python. You've used both English-language functions (upper(), len()) and symbolic ones (+, *).
92+
- __operators__ - like + and *, combine values to produce a new one
93+
- __functions__ - like upper() and len(), perform actions on objects.
9394

9495
These are the basics of every programming language you learn. Ready for something harder? We bet you are!
9596

0 commit comments

Comments
 (0)