def show(name,var,isP): #by D@CC on 2023ISep06 #Purpose to display the name,type and value of a variable if isP==1: #only print if isP is 1 (meaning True) typeVar=type(var) if typeVar=="str" : print(name+" type "+typeVar+":"+var+":" ) else: print(name+" type "+typeVar+":",var) #if end #if end #def end #show_py.txt