1
0
mirror of https://github.com/kamranahmedse/developer-roadmap.git synced 2025-08-22 17:02:58 +02:00

Update 100-builtin-modules.md

Fixed a grammatical mistake
This commit is contained in:
Ahmad Alsaleh
2024-01-15 22:55:28 +04:00
committed by GitHub
parent 5cf7aa340f
commit c2458fff8e

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 in previously. For example `print()` and `input()` for I/O, number conversion functions (`int()`, `float()`, `complex()`), data type conversions (`list()`, `tuple()`, `set()`) etc.
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.
Visit the following resources to learn more: