This is a great video on how to design a software system.
Another one on what actually was suppose to be OOP but never happened.
from copy import copy | |
data={'amit' : 'boston', 'rohit' : 'dhanbad'} | |
print (data) | |
def changeData(data): | |
data = copy(data) | |
data['amit'] = 'BOSTON' | |
print(data) | |
changeData(data) | |
print (data) | |
===== | |
-- Output -- | |
{'amit': 'boston', 'rohit': 'dhanbad'} | |
{'amit': 'BOSTON', 'rohit': 'dhanbad'} | |
{'amit': 'boston', 'rohit': 'dhanbad'} |
02/22/2021 Last week I was just un-productive and was not doing enough to talk about. I also wanted to say that weeks before the last, I ha...