您现在的位置是:主页 > news > 做a视频网站/策划推广
做a视频网站/策划推广
admin2025/5/5 13:38:19【news】
简介做a视频网站,策划推广,python设计网页,上海哪个网站能应聘做家教的如果python字符串在weblog article by Laurent Luce中,则可以找到有关实现的一些信息。另外,您可以浏览source。在字符串对象的大小取决于操作系统、机器类型和某些选择。在64位FreeBSD上,将unicode用于字符串文字(from __future__ import un…
如果python字符串在weblog article by Laurent Luce中,则可以找到有关实现的一些信息。另外,您可以浏览source。在
字符串对象的大小取决于操作系统、机器类型和某些选择。在64位FreeBSD上,将unicode用于字符串文字(from __future__ import unicode_literals):In [1]: dir(str)
Out[1]: ['__add__', '__class__', '__contains__', '__delattr__', '__doc__',
'__eq__', '__format__', '__ge__', '__getattribute__', '__getitem__',
'__getnewargs__', '__getslice__', '__gt__', '__hash__', '__init__', '__le__',
'__len__', '__lt__', '__mod__', '__mul__', '__ne__', '__new__', '__reduce__',
'__reduce_ex__', '__repr__', '__rmod__', '__rmul__', '__setattr__',
'__sizeof__', '__str__', '__subclasshook__', '_formatter_field_name_split',
'_formatter_parser', 'capitalize', 'center', 'count', 'decode', 'encode',
'endswith', 'expandtabs', 'find', 'format', 'index', 'isalnum', 'isalpha',
'isdigit', 'islower', 'isspace', 'istitle', 'isupper', 'join', 'ljust',
'lower', 'lstrip', 'partition', 'replace', 'rfind', 'rindex', 'rjust',
'rpartition', 'rsplit', 'rstrip', 'split', 'splitlines', 'startswith', 'strip',
'swapcase', 'title', 'translate', 'upper', 'zfill']
In [2]: import sys
In [3]: sys.getsizeof("")
Out[3]: 52
In [4]: sys.getsizeof("test")
Out[4]: 68
In [7]: sys.getsizeof("t")
Out[7]: 56
In [8]: sys.getsizeof("te")
Out[8]: 60
In [9]: sys.getsizeof("tes")
Out[9]: 64
在这种情况下,每个字符都额外使用4个字节。在