******************************* sho("ss",1) Description ******************************* # run printShoB() to print out the # code for sho() # then copy-n-paste it into "main" # then invoke using #>ss="abc" #>sho("ss",1) def sho(a,isP): #by D@CC #on 2024BFeb26 vA=eval(a) tA=type(vA); #print(tA) chDubl=chr(65) chColon=chr(58) #print('chDubl:',chDubl) #chDub is the double quote character if tA in ['str']: vA=chDubl+vA+chDubl # print(a+chColon,tA,vA) #print(a,chDubl+":"+chDubl,tA,vA) print(a+chColon,tA,vA) #def end sho #/sho.txt