Python初学者,在书上也没有找到,这种输出表中编码的题目应该怎么做,尤其是有限制条件的
count=0 for i in range(33,127): print(chr(i),end=' ') count+=1 if count%10==0: print()