5 WTF Moments in Python

1. It Is Not the Function I Called! I encountered this issue when implementing the Decorator Pattern in python. ⛶callbacks = [ callback1, callback2, callback3, ] wrapped = [] f...
0 Read More

Variable assignment in Python

Buy Me a Coffee☕You can assign a value to one or more variables as shown below: ⛶v = 5 print(v) # 5 v = 10 print(v) # 10*str type cannot be changed by accessing each character so use list() and...
0 Read More

Encapsulation

To Understand Encapsulation please do check out last post Encapsulation is mechanism of bundling data (attribute) and methods that operate on that data within a single unit(class).Encapsulation is lik...
0 Read More