Discuss / Python / 练习

练习

Topic source

n1=255

n2=1000

print(hex(n1),hex(n2))

-------------------------------------

n1=255

n2=1000

L=[n1,n2]

for n in L:

    print("字符串",hex(n))


  • 1

Reply