Month: June 2020
Writing here to clearing engineering concept of a software for future reference. Example for Class, Constructors and…
Problem: Only Positive Numbers positiveFunc([-5,3,-1,101]) def positiveFunc(list_s): return [i for i in list_s if i>0]
Recent Comments