From 698436b1bbd5ab841c49db9cfd258fe0cbb46aae Mon Sep 17 00:00:00 2001 From: waldek Date: Thu, 7 Apr 2022 11:43:19 +0200 Subject: [PATCH] adds function based guess the number --- learning_python3.md | 1 + 1 file changed, 1 insertion(+) diff --git a/learning_python3.md b/learning_python3.md index 44694b8..87a00b7 100644 --- a/learning_python3.md +++ b/learning_python3.md @@ -1368,6 +1368,7 @@ if __name__ == "__main__": ``` + # Lists The different built-in objects we've seen until now, such as `str` and `int` are simple [text](https://docs.python.org/3/library/stdtypes.html#text-sequence-type-str) and [numeric](https://docs.python.org/3/library/stdtypes.html#numeric-types-int-float-complex) types.