Python Snippets/Scripts
Bitwise OR XOR AND Calculator
Example: Code: def valid_expression(expression: str) -> bool: """ Returns True if string...
Decimal to Binary Converter
Example: Code: def decToBinLongDivision(decimal: int) -> None: numtodivide = decimal ...
Decimal to Hex Converter
Example: Code: def decToHexLongDivision(decimal: int) -> str: numtodivide = decimal ...
2s Compliment Calculator
Example: Code: def binaryToDecimal(val: str) -> int: return int(val, 2) def decimal...
Inheritance
class Person(object): # Constructor def __init__(self, name): self.name = n...
Create SQLite DB from Wikipedia
Create an SQLite DB based on the British Monarch Family Tree.https://en.wikipedia.org/w/index.php...
Pandas
Set max row for dataframe output
# max row to display dataframe set to 7 import pandas as pd pd.set_option('display.max_rows', 7...
Combine df with concat
# Combine all dataframe with concat frame_format = [df_f0_f1, df_f1_f2, df_f2_f3, df_f3_f4, df_f...
Create histogram from df
df_trace_person_count sample: trace id no of unique person 0 TRACE_PERSON_00...