From c2458fff8e7e53a2ddefc46fd1910dd902afc4e5 Mon Sep 17 00:00:00 2001 From: Ahmad Alsaleh <61240880+Ahmad-Alsaleh@users.noreply.github.com> Date: Mon, 15 Jan 2024 22:55:28 +0400 Subject: [PATCH] Update 100-builtin-modules.md Fixed a grammatical mistake --- .../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 cb7223d60..6f74ef78f 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 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: