This repo is about learning python from basic to advanced level.
ANS:- Python is a general purpose, high level, interpreted, and dynamically typed programming language created by Guido Van Rossum in 1991.
Variables are containers for storing data values
Assign a value to the variable:-
x = 'Hello World!'
ANS:- Python is capable of scripting but in general sense it is consider as general purpose programming language.
ANS:- PEP 8 stands for python enhancement proposal. It is a set of rule that specify how to format python code for maximum readability
ANS:- The all() function returns True if all elements in the given iterable are true. If not, it returns False. all() function takes a single parameter.
Syntax:- all(iterable)
[More info about all() function] (https://github.com/guna7222/Learning-Python-/blob/main/functions/built-in%20function/all_function.py)