Python Data Cleaning Cookbook.pdf
3.4 MB
Python Data Cleaning Cookbook
Michael Walker, 2023
Michael Walker, 2023
β€4π2
30540964.pdf
5.3 MB
Useful Python
ΠΠ²ΡΠΎΡ: Stuart Langridge
ΠΠ²ΡΠΎΡ: Stuart Langridge
30303228.pdf
642.4 KB
Python Clean Code
ΠΠ²ΡΠΎΡ: Nash Maverick
ΠΠ²ΡΠΎΡ: Nash Maverick
https_coderbooks_ruPython_How_To_63_techniques_to_improve_your_Python.pdf
12.7 MB
Python How-To
ΠΠ²ΡΠΎΡ: Yong Cui
ΠΠ²ΡΠΎΡ: Yong Cui
https___coderbooks.ruPython for Cybersecurity.pdf
8.9 MB
Python for Cybersecurity
ΠΠ²ΡΠΎΡ: Howard E. Poston III
ΠΠ²ΡΠΎΡ: Howard E. Poston III
Django_3_Web_Development_Cookbook.pdf
43.2 MB
Django 3 Web Development Cookbook
ΠΠ²ΡΠΎΡ: Aidas Bendoraitis
ΠΠ²ΡΠΎΡ: Aidas Bendoraitis
β€4π4
COMMON TERMINOLOGIES IN PYTHON - PART 1
Have you ever gotten into a discussion with a programmer before? Did you find some of the Terminologies mentioned strange or you didn't fully understand them?
In this series, we would be looking at the common Terminologies in python.
It is important to know these Terminologies to be able to professionally/properly explain your codes to people and/or to be able to understand what people say in an instant when these codes are mentioned. Below are a few:
IDLE (Integrated Development and Learning Environment) - this is an environment that allows you to easily write Python code. IDLE can be used to execute a single statements and create, modify, and execute Python scripts.
Python Shell - This is the interactive environment that allows you to type in python code and execute them immediately
System Python - This is the version of python that comes with your operating system
Prompt - usually represented by the symbol ">>>" and it simply means that python is waiting for you to give it some instructions
REPL (Read-Evaluate-Print-Loop) - this refers to the sequence of events in your interactive window in form of a loop (python reads the code inputted>the code is evaluated>output is printed)
Argument - this is a value that is passed to a function when called eg print("Hello World")... "Hello World" is the argument that is being passed.
Function - this is a code that takes some input, known as arguments, processes that input and produces an output called a return value. E.g print("Hello World")... print is the function
Return Value - this is the value that a function returns to the calling script or function when it completes its task (in other words, Output). E.g.
>>> print("Hello World")
Hello World
Where Hello World is your return value.
Note: A return value can be any of these variable types: handle, integer, object, or string
Script - This is a file where you store your python code in a text file and execute all of the code with a single command
Script files - this is a file containing a group of python scripts
Have you ever gotten into a discussion with a programmer before? Did you find some of the Terminologies mentioned strange or you didn't fully understand them?
In this series, we would be looking at the common Terminologies in python.
It is important to know these Terminologies to be able to professionally/properly explain your codes to people and/or to be able to understand what people say in an instant when these codes are mentioned. Below are a few:
IDLE (Integrated Development and Learning Environment) - this is an environment that allows you to easily write Python code. IDLE can be used to execute a single statements and create, modify, and execute Python scripts.
Python Shell - This is the interactive environment that allows you to type in python code and execute them immediately
System Python - This is the version of python that comes with your operating system
Prompt - usually represented by the symbol ">>>" and it simply means that python is waiting for you to give it some instructions
REPL (Read-Evaluate-Print-Loop) - this refers to the sequence of events in your interactive window in form of a loop (python reads the code inputted>the code is evaluated>output is printed)
Argument - this is a value that is passed to a function when called eg print("Hello World")... "Hello World" is the argument that is being passed.
Function - this is a code that takes some input, known as arguments, processes that input and produces an output called a return value. E.g print("Hello World")... print is the function
Return Value - this is the value that a function returns to the calling script or function when it completes its task (in other words, Output). E.g.
>>> print("Hello World")
Hello World
Where Hello World is your return value.
Note: A return value can be any of these variable types: handle, integer, object, or string
Script - This is a file where you store your python code in a text file and execute all of the code with a single command
Script files - this is a file containing a group of python scripts
π4β€1
Coding Projects in Python (DK).pdf
21.9 MB
Coding projects in Python
DK, 2017
DK, 2017
β€4π1