Month: June 2020

13
Jun
2020

Design Pattern and Object oriented Data Analaysis

Writing here to clearing engineering concept of a software for future reference. Example for Class, Constructors and…

04
Jun
2020

Programming Problem Solve with Python:

Problem: Only Positive Numbers positiveFunc([-5,3,-1,101]) def positiveFunc(list_s): return [i for i in list_s if i>0]