Class 12 Python Networking Notes
Class 12 Python Networking Notes
Review of Python I
Operators:
- Arithmetic: +, -, *, /, //, %, **
Loops:
- while loop
- for loop
Review of Python II
Types:
- With/without parameters
Closing: file.close()
Example:
try:
a = 10 / 0
except ZeroDivisionError:
finally:
print("Done")
push: stack.append(item)
pop: stack.pop()
Computer Networking