From 01673472772323ee46437d7f92786c7c9a5cd974 Mon Sep 17 00:00:00 2001 From: Artem745 <136634824+Artem745@users.noreply.github.com> Date: Mon, 27 May 2024 12:31:17 +0200 Subject: [PATCH] Update built-in modules text (#5737) The paragraph was about built-in functions, not modules --- .../105-modules/100-builtin-modules.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/data/roadmaps/python/content/102-python-advanced-topics/105-modules/100-builtin-modules.md b/src/data/roadmaps/python/content/102-python-advanced-topics/105-modules/100-builtin-modules.md index 6f74ef78f..8ddeb5a37 100644 --- a/src/data/roadmaps/python/content/102-python-advanced-topics/105-modules/100-builtin-modules.md +++ b/src/data/roadmaps/python/content/102-python-advanced-topics/105-modules/100-builtin-modules.md @@ -1,6 +1,6 @@ # Builtin Modules -Python interpreter has a number of built-in functions. They are always available for use in every interpreter session. Many of them have been discussed previously. For example `print()` and `input()` for I/O, number conversion functions (`int()`, `float()`, `complex()`), data type conversions (`list()`, `tuple()`, `set()`) etc. +Python has a rich standard library of built-in modules that provide a wide range of functionality. Some of the most commonly used built-in modules include: sys, os, math, datetime, random, re, itertools, etc. Visit the following resources to learn more: