FitVision - devlog #3

FitVision - devlog #3
Hey everyone! 👋 In this blog I will showcase the latest updates of my project. Some of this important changes include: Improvement of the User Interface Light/dark mode Settings window Added a too...
0 Read More

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