str=char(97) #将ASCII码转换为字符,str的值为a
ascii=ord('a') #将字符转换为ASCII码,ascii的值为97
num=bin(10) #将十进制转换为二进制,num的值为0b1010