CLMar 7, 20201 min readPython Fundamentals (Part 4.)02/19 - 02/24 Missing Values isnull(); isna(); notnull() df.dropna() default axis =0 default how = "any" , which means that if any row...
CLMar 1, 20202 min readPython Fundamentals (Part 3.)02/07~ 02/17 note-taking np.array(); np.max(); np.sum(); np.mean() Inside the parameter, you can put axis = 0 or axis =1 axis = 0 row...
CLFeb 23, 20201 min readPython Fundamentals (Part 2.)Scope: Global vs. Local Left , Right Alignment, String Formatting from decimal import * ---------------------------------------------- [:...
CLFeb 18, 20201 min readPython Fundamentals (Part 1.)Python Identifiers: Starts with A-Z,a-z or underscore DON't start with digits DON'T use reserved keywords Mandarin is allowed in Python 3...
CLJan 30, 20201 min readTruthy and Falsy Values in PythonTakeaway from the freecodecamp article https://www.freecodecamp.org/news/truthy-and-falsy-values-in-python/ Falsy Values include:...