Step 1 - Getting Started in Python 3 Flashcards
What do you mean by Six Degree of Separation ?
Six degrees of separation is the theory that any person on the planet can be connected to any other person on the planet through a chain of acquaintances that has no more than five intermediaries.
What is Zen of Python ?
The Zen of Python by Tim Peters are 20 guidelines for the design of the Python language. Your Python code doesn’t necessarily have to follow these guidelines, but they’re good to keep in mind. The Zen of Python is an Easter egg, or hidden joke, that appears if you run import this:
> > > import this
When was Python Born ?
Python was officially born in Feb 20 1991,with version no. 0.9 .
What are some Development Environments of Python?
Python IDEs are,
Jupyter Notebook,Jupyter Lab
PC or Pycharm
VS Code Editor
Which Python Modules are for Data Manipulation ?
Numpy & Pandas
Which Python Modules are for Scientific Computing ?
SciPy Module
In which module ML algorithms are efficiently implemented.
SciKit Learn or sklearn
Which Python Modules are for Big Data ?
Hadoopy & PySpark
Which Python Modules are to Speed up
or Boosting Python Code as par C Code ?
Cython & Numba helps python code run faster.
What is a popular test automation framework in Python ?
NOSE
When was Pythion 3.0 released?
In Dec 2008
When was Python 2.x End of Life
It originally had a scheduled EOL for 2015 but was extended for another five years to 2020
What is BSD License ?
The abbreviation of BSD is Berkely Source Distribution, It is a low restriction-based license for opensource S/W.Which gives you permission to use it commercially and for redistribution
What are Python Identifiers ?
Identifiers are the names of objects, such as varaibles names,class names,function names
What are the rules of creating identifiers in Python ?
- It can be a combination of lower case or uppercase Letters,digits 0-9 & underscore.
- It cant be starts with digit.
- Special Symbol not allowed except underscore
- Keywords not allowed as identifiers.
What are python Keywords ?
These are set of reserved words,which are used to define syntax & structure of the language.
Keywords are case sensitive must be used in lower case