- π Iβm interested in Python programming and machine learning π¨βπ»
- π± Iβm currently learning machine learning π§
- π³ nowadays I'm reading SQL cookbook by by Anthony Molinaro and Robert de Graaf
class Programmer:
def __init__(self, name: str, family: str, is_alive: bool, coding: bool = False):
self.name = name
self.family = family
self.is_alive = is_alive
self.coding = coding
def __str__(self) -> str:
print(f"Be a good version of yourself {self.name} {self.family}.")
me = Programmer(name="Dariush", Family="Dehghani", is_alive=True, coding=None)
while me.is_alive == True:
me.coding = True