************************************* listForSquareDigit(digit): (text) ************************************* #by D@CC #on 2023DApr05 #Project: WioClock #Code: MicroPython #Purpose: returns a Python list containing 5 rows (0 to 4) of the digit calls: workInProgress() showList() #print("into listForSquareDigit, digit:",digit) # in big square format (5x5) # default return is a big "X" # digit must be a single str in "0123456789 :" result=workInProgress(digit) #print("@522f") #showList("result",True,result,True) return result #def end **************************************************************************** #/listForSquareDigit.txt