Python 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...
02/19 - 02/24 Missing Values isnull(); isna(); notnull() df.dropna() default axis =0 default how = "any" , which means that if any row...
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...
Scope: Global vs. Local Left , Right Alignment, String Formatting from decimal import * ---------------------------------------------- [:...
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...
Takeaway from the freecodecamp article https://www.freecodecamp.org/news/truthy-and-falsy-values-in-python/ Falsy Values include:...