Official Cert Guide - Chapter 4 - 5 Flashcards
Question
Answer
What is a python function?
A named block of code that can take wide variety parameters and return some form of output back.
Can you reuse a function?
Yes
Where stands OOPS for?
Object Oriented Programming
As what kind of modern language was Python Developed?
Object Oriented Programming
What is Object Oriented Programming?
A computer programming paradigm that makes it possible to describe real-world things and their relationships to each other.
What does OOP do?
You can create an object with several variables anywhere in your code and call this OOP function when you want.
What is Python in relation with OOP?
Object are central in Python. Python is jus a collection of objects interacting with each other.
What is the idea of OOP?
Break up a program into smaller
What is an important part of the OOP principles of reusability and object oriented structure?
Functions!
How do you describe objects in Python
With Classes!
What are classes?
A class is a tool you use to ceate your own data structure that contains information about something.
How do you use classes
You can use functions(methods) to perform operations on the data you describe
When you start with a class what is the first thing to do?
You need to pass some values to get started. The first values is always: self
What happens with the self value?
The self value passes the object name that you select to instantiate the class.
You can start the fucntion with init. How do we call this?
dunder or magic methods. This will setup the class.
The attributes you add to the class how are these called and what are they doing?
Called method. This become actions that you can perform on the object you are creating.
What is recommanded to do when you are creating a class
Provide other capitalizing signs from a variable. Example: use ‘'’test’’’ for a class and ‘‘test’’ for a variable
What do you replace when you use inheritance
You can replace methods and attributes that need to be different
What is important when you inherit in a class
You create the class before the colon
What is a central goal of OOP?
Allow you to build modular software that break code up into smaller
How can you separate code into smaller chunks that hold key structures and classes with movement between each other?
This can be done with import statement. You import modules.
Creating modular code provides the following benefits?
- Easier readability/maintainability
- Low coupling/high cohesion
- Code reusability
- Collaboration
Which module types are there?
- Third party modules imported in Python library
- Hand made appending with a .py extenion
What is the command for importing modules?
import
Which modules are interesting for you code?
The modules without the _ in the library
Can you shorten module names?
Yes
Which command do you use to import the netmiko module?
from netmiko import ConnectHandler
There are several data input types such as data from a website
API or a file. What is the big trick with this data?
Which sign is used to start with a new line?
/n
Whare are the two requirements with the open() function?
The name of the file you want to work with. The function (e.g. read
What are the open functions?
- r: open for reading (default)
- w: open for writing
- x: open for exclusive creation
- a: open for writing
- b: open in binary mode
- t: open in text mode(default)
- +: open for updating (reading and writing)
How do you close the file?
close()
How do you open the file?
open()
What happens when you don’t close the file?
File stays open and you might run in a file lock
What is the benefit of the with statement instead of only the open statement?
Uses the open() function but doenst require direct assignement to a variable and automatically closes the file when you are ready
What are the most common data forms?
- CSV
- XML
- JSON
- YAML
What is the with function benefit?
Display information in an easier way
From which data structure is JSON derived?
Java
What is the JSON data structure?
Built around key/value pairs that simplify mapping of data and its retrieval
What is the nesting capability of JSON?
You start with a main data object
What is the convert JSON statement for python lists
JSON Array
What is the convert JSON statement for python dictonary?
JSON Objects
What are the four functions that you perform to convert JSON data into Python objects and back?
- load()
- loads()
- dump()
- dumps()
Where does the S for refers in load/loads and dump/dumps?
Refers to a string
Where stands XML For?
Extensible Markup Language
Where is XML most used for?
Configuration automation
To which language did XML look like?
HTML. It is developed to work hand-in-hand with HTML for data transport and storage between web-services and APIs
Which structure has XML?
Tree structure. With ROOT element on the top
Where stands JSON for?
JavaScript Object Notation
Which kind of relationship is there between XML elements?
Parent/Child
Which model you can use to convert XML into an ordered dictonary in Python?
Module: xmltodict
Where stands YAML for?
YAML Ain’t Markup Language?
What is the big difference between YAML and XML/JSON
Very easy readable. Much simpler syntax/structure
On which language is YAML based?
JSON
With which sign you can create a list to identify elements?
-
What do you need to do to work with Python and YAML?
Import the PyYaml module
To which Python state are YAML object converted?
Python dictonaries
To which Python state are YAML list converted?
Python lists
Which function converts YAML object to python?
yaml.load
Which function converts python to YAML objects?
yaml.dump
What is used to tell the users what they did wrong and let them try again?
try-except-else-finaly code block
What can you do to add error handeling to your code?
use the try statement in the code
Where stands TDD for?
Test-Driven Development
What is the TDD loop?
- Write Test
- Test Fails
- Write Code
- Test Passes
- Refactor
What is the benefit of TDD?
That you write code with de goa lin mind
Is there a built-in test module in Python?
Yes
You need to know how unittest works for DEVASC!
TEST!!!
How can you define a function?
- Use the keyword def
- A name for the function
- A set of parentheses enclosing any arguments you want to pass to the function
- And a colon at the end
The name of the function must follow three rules:
- Must not start with a number
- Must not be a reserved Python word (print(), input(), etc)
3 Can ben any combination of the: A-Z, a-z, 0-9, _, -
How do you start working with CSV import to Python?
Code:
import csv
samplefile = open(‘routerlist.csv’)
samplereader = csv.reader(samplefile)
sampledata = list(samplereader)
sampledata