What is a module in Python Any collection of functions and o
What is a module in Python?
Any collection of functions and other statements, stored in a single file.
Any function definition.
A collection of functions intended to be used together and stored in a single file.
Another name for any collection data type.
What is the difference between the positive and the negative index of the same character in a string s?
s[-1] - s[0]
len(s)
Depends on s.
0
| 0 |
Solution
Q) What is a module in Python?
answer)) A module is a Python object with arbitrarily named atributes that you can bind and reference. Simply a module is a file consisting of python code. A module can define functions, classes and variables. A module can also include a runnable code.3
Q)What is the difference between the positive and negative index of the same charcter in a astring S?
A)s[-1]-s[0].
