1
0
mirror of https://github.com/kamranahmedse/developer-roadmap.git synced 2025-03-15 12:49:43 +01:00

Update built-in modules text (#5737)

The paragraph was about built-in functions, not modules
This commit is contained in:
Artem745 2024-05-27 12:31:17 +02:00 committed by GitHub
parent 0bb784c45b
commit 9895956531
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -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: