用Python编写程序?

2025-03-30 14:02:14
推荐回答(1个)
回答1:

for i in range(65,101):

    print(bin(i)[2:]+','+oct(i)[2:]+','+str(i)+','+hex(i)[2:]+','+chr(i))