+ 1
What are loops and modules?
2 Answers
0
Loop is some code with some condition or so: some code is repeated some number of times, while iterating through some iterable object, while or until some statement is true or similar.
If you are asking about Python, module is literally any Python program/code. Although by some people programs/codes that are made to run and not import from other program/code are named scripts and programs/codes that are made to for use in other programs are named modules.
- 1
recursive