Python Ceiling: Rounding Up (and Python Ceiling Division)
Learn how to use the Python ceiling function to round numbers up. Learn differences between Python 2 and 3 and how ceiling division works.
Learn how to use the Python ceiling function to round numbers up. Learn differences between Python 2 and 3 and how ceiling division works.
Learn how to use Python to count the number of occurrences of an item in a list, using count, Counter, pandas, operator, and comprehensions.
Learn how to use Python to get the index of the max item in a list, including when duplicates exist, using for loops, enumerate, and numpy.
Learn how to use Python to convert int to binary (integer to binary strings) using the format and bin functions, and string formatting.
Learn how to combine Python lists and how to merge lists, including in alternating sequence and with unique or common elements.
Learn how to check if a Python list contains an element using different methods, including the in keyword, the count method, and more!
Learn how to use Python and numpy to calculate the dot product, including between arrays of different dimensions and of scalars.
Learn how to use the Pandas rank method to rank you data, including how to rank a grouped dataframe using the groupby method.
Learn how to use the Pandas describe method to generate summary statistics on your Pandas Dataframe, including changing percentiles.
Learn how to remove an item from a Python list, using the pop, remove, and del methods. Also learn how to clear an entire list.
Use the Python rfind method to find the last, or right-most, index of a substring in a Python string, including the difference to rindex.
Learn how to implement Python SHA256 using the hashlib module, including working with unicode strings, files, and Pandas Dataframes.