Please enable JavaScript.
Coggle requires JavaScript to display documents.
Pyton - Coggle Diagram
Pyton
-
-
youtube
intro
15:13 / 16:22
GNS3 Talks: Python for Network Engineers with GNS3 (Part 1). Network programmability made easy.
Introduction to Python for Cisco Networking Professionals
146,800 views•Mar 20, 2017
def
function
Once we have defined a function, we can call it from another function, program or even the Python prompt. To call a function we simply type the function name with appropriate parameters.
marks the start of the function header. A function name to uniquely identify the function. Function naming follows the same rules of writing identifiers in Python. Parameters (arguments) through which we pass values to a function.
file "<Stdin>, line 1 in < module>, tyope error doesn't support item assignment
-
-
dictionary
Dictionary. A dictionary is a collection which is unordered, changeable and indexed. In Python dictionaries are written with curly brackets, and they have keys and values.
-
whitespace
Whitespace just means characters which are used for spacing, and have an "empty" representation. In the context of python, it means tabs and spaces (
-
-