Python_驻留机制

时间:2025-01-08 21:08:02
 #coding=utf-8
#coding:utf-8
#- * -coding:utf-8 - * - '''以上为注明字符串的编码格式'''
#驻留机制
'''Python支持短字符串驻留机制,对于短字符串,将其赋值给多个不同的对象时,内存中只有一个副本,多个对象共享该副本,
与其他类型数具有相同的特点。然而这一特点并不适用于长字符串,长字符串不遵守驻留机制'''
a=''
b=''
print(id(a)==id(b)) #短字符串
#True
a='' * 50 #长字符串
b='' * 50
print(id(a)==id(b))
#False
#判断是否为字符串,可使用内置方法isinstace()或type()
print(type('字符串'))
#<class 'str'>
print(type('字符串'.encode('gbk')))
#<class 'bytes'>
print(bytes)
#<class 'bytes'>
print(isinstance('中国',str))
#True
print(type('中国')==str)
#True
print(type('字符串'.encode())==bytes)
#True
print(type('字符串')==bytes)
#True #转义字符的使用
print('Hello\nWorld') #换行
# Hello
# World
print(oct(65)) #转换成8进制
# 0o101
print('\101') #3位8进制数对应的字符
# A
print('\x41') #2位十六进制数对应的字符
# A
print(ord('张')) #以一个字符(长度为1的字符串)作为参数,返回对应的ASCII数值,或者Unicode数值,如果所给的Unicode字符超出了你的Python定义范围,则会引发一个TypeError的异常
#
print(hex(15)) #转换一个整数对象为十六进制的字符串表示
print('\u8464')
# 葤