Python Subjects Flashcards
List the python introductary main subjects
Installation and IDEs
Fundamentals
Literals, variables and comments
Number systems and numeric operators
Operators and bindings
Input and Output operations
Sytings, Operators and calculations
Lists
Tuples
Dictionaries
Strings
Conditionals
Looping
Functions
Generators
Scoping
List the python associate main subjects
Lambdas, closures and collection functions
The if operator and conditional expressions
Modules and packages
Classes and object oriented programming
Input and output basics
Exceptions and Exception handling
Describe the differences between scripts, modules, packages and libraries
What is a script
What is a module
What is a package
What is a library
What is a virtual environment?
Isolate python installations from one another
What does a virtual environment contain?
A python interpretor
A pip executable
A site-packages directory
What is PyPI
The python package index
How do you find the python keywords?
How do you find the methods of an object?
Explain floor and modulo
What are the different types of loops in python?
While
for
list comprehensions
using break, continue and pass