my version of @dis.sociat.ing's dollcode algorithm in python

*actually* switched from passing args directly to passing thru main for easier testing

+2 -2
+2 -2
main.py
··· 34 34 print(string) 35 35 36 36 37 - def main(number: int = args.number): 37 + def main(number: int): 38 38 print_dollcode((convert_number(number))) 39 39 40 40 41 41 if __name__ == "__main__": 42 - main() 42 + main(args.number)