Skip to content

guna7222/Learning-Python-

Repository files navigation

Learning-Python-

This repo is about learning python from basic to advanced level.

What is Python?

ANS:- Python is a general purpose, high level, interpreted, and dynamically typed programming language created by Guido Van Rossum in 1991.

V1

Hello world program 👍

Capture

Variables 👍

Variables are containers for storing data values

Assign a value to the variable:-

x = 'Hello World!'

Features of Python 👍

Features-of-python-01

Is Python programming language or scripting ?

ANS:- Python is capable of scripting but in general sense it is consider as general purpose programming language.

what is PEP8?

ANS:- PEP 8 stands for python enhancement proposal. It is a set of rule that specify how to format python code for maximum readability

what is all() built-in function?

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)

Capture

[More info about all() function] (https://github.com/guna7222/Learning-Python-/blob/main/functions/built-in%20function/all_function.py)