您好,欢迎来到三六零分类信息网!老站,搜索引擎当天收录,欢迎发信息

Python开发(3):Python基本数据类型

2024/4/10 9:08:41发布15次查看
运算符1、算数运算:
2、比较运算:
3、赋值运算:
4、逻辑运算:
5、成员运算:
基本数据类型1、数字
int(整型)
在32位机器上,整数的位数为32位,取值范围为-2**31~2**31-1,即-2147483648~2147483647
在64位系统上,整数的位数为64位,取值范围为-2**63~2**63-1,即-9223372036854775808~9223372036854775807
class int(object):int(x=0) -> int or long     int(x, base=10) -> int or long          convert a number or string to an integer, or return 0 if no arguments     are given.  if x is floating point, the conversion truncates towards zero.     if x is outside the integer range, the function returns a long instead.          if x is not a number or if base is given, then x must be a string or     unicode object representing an integer literal in the given base.  the     literal can be preceded by '+' or '-' and be surrounded by whitespace.     the base defaults to 10.  valid bases are 0 and 2-36.  base 0 means to     interpret the base from the string as an integer literal.     >>> int('0b100', base=0)     4def bit_length(self):  返回表示该数字的时占用的最少位数 int.bit_length() -> int                  number of bits necessary to represent self in binary.         >>> bin(37)         '0b100101'         >>> (37).bit_length()         6return 0def conjugate(self, *args, **kwargs): # real signature unknown 返回该复数的共轭复数  returns self, the complex conjugate of any int. passdef __abs__(self): 返回绝对值  x.__abs__() 209861d5cd2975725c730f519ed6ad71 abs(x) passdef __add__(self, y): x.__add__(y) 209861d5cd2975725c730f519ed6ad71 x+y passdef __and__(self, y): x.__and__(y) 209861d5cd2975725c730f519ed6ad71 x&y passdef __cmp__(self, y):  比较两个数大小  x.__cmp__(y) 209861d5cd2975725c730f519ed6ad71 cmp(x,y) passdef __coerce__(self, y): 强制生成一个元组   x.__coerce__(y) 209861d5cd2975725c730f519ed6ad71 coerce(x, y) passdef __divmod__(self, y):  相除,得到商和余数组成的元组   x.__divmod__(y) 209861d5cd2975725c730f519ed6ad71 divmod(x, y) passdef __div__(self, y):  x.__div__(y) 209861d5cd2975725c730f519ed6ad71 x/y passdef __float__(self):  转换为浮点类型   x.__float__() 209861d5cd2975725c730f519ed6ad71 float(x) passdef __floordiv__(self, y):  x.__floordiv__(y) 209861d5cd2975725c730f519ed6ad71 x//y passdef __format__(self, *args, **kwargs): # real signature unknownpassdef __getattribute__(self, name):  x.__getattribute__('name') 209861d5cd2975725c730f519ed6ad71 x.name passdef __getnewargs__(self, *args, **kwargs): # real signature unknown 内部调用 __new__方法或创建对象时传入参数使用  passdef __hash__(self): 如果对象object为哈希表类型,返回对象object的哈希值。哈希值为整数。在字典查找中,哈希值用于快速比较字典的键。两个数值如果相等,则哈希值也相等。 x.__hash__() 209861d5cd2975725c730f519ed6ad71 hash(x) passdef __hex__(self):  返回当前数的 十六进制 表示   x.__hex__() 209861d5cd2975725c730f519ed6ad71 hex(x) passdef __index__(self):  用于切片,数字无意义  x[y:z] 209861d5cd2975725c730f519ed6ad71 x[y.__index__():z.__index__()] passdef __init__(self, x, base=10): # known special case of int.__init__ 构造方法,执行 x = 123 或 x = int(10) 时,自动调用,暂时忽略  int(x=0) -> int or long         int(x, base=10) -> int or long                  convert a number or string to an integer, or return 0 if no arguments         are given.  if x is floating point, the conversion truncates towards zero.         if x is outside the integer range, the function returns a long instead.                  if x is not a number or if base is given, then x must be a string or         unicode object representing an integer literal in the given base.  the         literal can be preceded by '+' or '-' and be surrounded by whitespace.         the base defaults to 10.  valid bases are 0 and 2-36.  base 0 means to         interpret the base from the string as an integer literal.         >>> int('0b100', base=0)         4         # (copied from class doc)passdef __int__(self):  转换为整数   x.__int__() 209861d5cd2975725c730f519ed6ad71 int(x) passdef __invert__(self):  x.__invert__() 209861d5cd2975725c730f519ed6ad71 ~x passdef __long__(self):  转换为长整数   x.__long__() 209861d5cd2975725c730f519ed6ad71 long(x) passdef __lshift__(self, y):  x.__lshift__(y) 209861d5cd2975725c730f519ed6ad71 x>y passdef __rsub__(self, y):  x.__rsub__(y) 209861d5cd2975725c730f519ed6ad71 y-x passdef __rtruediv__(self, y):  x.__rtruediv__(y) 209861d5cd2975725c730f519ed6ad71 y/x passdef __rxor__(self, y):  x.__rxor__(y) 209861d5cd2975725c730f519ed6ad71 y^x passdef __sub__(self, y):  x.__sub__(y) 209861d5cd2975725c730f519ed6ad71 x-y passdef __truediv__(self, y):  x.__truediv__(y) 209861d5cd2975725c730f519ed6ad71 x/y passdef __trunc__(self, *args, **kwargs):  返回数值被截取为整形的值,在整形中无意义 passdef __xor__(self, y):  x.__xor__(y) 209861d5cd2975725c730f519ed6ad71 x^y passdenominator = property(lambda self: object(), lambda self, v: none, lambda self: none)  # default 分母 = 1 the denominator of a rational number in lowest termsimag = property(lambda self: object(), lambda self, v: none, lambda self: none)  # default 虚数,无意义 the imaginary part of a complex numbernumerator = property(lambda self: object(), lambda self, v: none, lambda self: none)  # default 分子 = 数字大小 the numerator of a rational number in lowest termsreal = property(lambda self: object(), lambda self, v: none, lambda self: none)  # default 实属,无意义 the real part of a complex number
int
2、布尔值
真或假
1 或 0
3、字符串
hello world
字符串常用功能:
移除空白
分割
长度
索引
切片
class str(basestring):str(object='') -> string          return a nice string representation of the object.     if the argument is a string, the return value is the same object.def capitalize(self):   首字母变大写 s.capitalize() -> string                  return a copy of the string s with only its first character         capitalized.return def center(self, width, fillchar=none):   内容居中,width:总长度;fillchar:空白处填充内容,默认无 s.center(width[, fillchar]) -> string                  return s centered in a string of length width. padding is         done using the specified fill character (default is a space)return def count(self, sub, start=none, end=none):   子序列个数 s.count(sub[, start[, end]]) -> int                  return the number of non-overlapping occurrences of substring sub in         string s[start:end].  optional arguments start and end are interpreted         as in slice notation.return 0def decode(self, encoding=none, errors=none):   解码 s.decode([encoding[,errors]]) -> object                  decodes s using the codec registered for encoding. encoding defaults         to the default encoding. errors may be given to set a different error         handling scheme. default is 'strict' meaning that encoding errors raise         a unicodedecodeerror. other possible values are 'ignore' and 'replace'         as well as any other name registered with codecs.register_error that is         able to handle unicodedecodeerrors.return object()def encode(self, encoding=none, errors=none):   编码,针对unicode s.encode([encoding[,errors]]) -> object                  encodes s using the codec registered for encoding. encoding defaults         to the default encoding. errors may be given to set a different error         handling scheme. default is 'strict' meaning that encoding errors raise         a unicodeencodeerror. other possible values are 'ignore', 'replace' and         'xmlcharrefreplace' as well as any other name registered with         codecs.register_error that is able to handle unicodeencodeerrors.return object()def endswith(self, suffix, start=none, end=none):   是否以 xxx 结束 s.endswith(suffix[, start[, end]]) -> bool                  return true if s ends with the specified suffix, false otherwise.         with optional start, test s beginning at that position.         with optional end, stop comparing s at that position.         suffix can also be a tuple of strings to try.return falsedef expandtabs(self, tabsize=none):   将tab转换成空格,默认一个tab转换成8个空格 s.expandtabs([tabsize]) -> string                  return a copy of s where all tab characters are expanded using spaces.         if tabsize is not given, a tab size of 8 characters is assumed.return def find(self, sub, start=none, end=none):   寻找子序列位置,如果没找到,返回 -1 s.find(sub [,start [,end]]) -> int                  return the lowest index in s where substring sub is found,         such that sub is contained within s[start:end].  optional         arguments start and end are interpreted as in slice notation.                  return -1 on failure.return 0def format(*args, **kwargs): # known special case of str.format 字符串格式化,动态参数,将函数式编程时细说 s.format(*args, **kwargs) -> string                  return a formatted version of s, using substitutions from args and kwargs.         the substitutions are identified by braces ('{' and '}').passdef index(self, sub, start=none, end=none):   子序列位置,如果没找到,报错 s.index(sub [,start [,end]]) -> int                  like s.find() but raise valueerror when the substring is not found.return 0     def isalnum(self):   是否是字母和数字 s.isalnum() -> bool                  return true if all characters in s are alphanumericand there is at least one character in s, false otherwise.return false     def isalpha(self):   是否是字母 s.isalpha() -> bool                  return true if all characters in s are alphabeticand there is at least one character in s, false otherwise.return false     def isdigit(self):   是否是数字 s.isdigit() -> bool                  return true if all characters in s are digitsand there is at least one character in s, false otherwise.return false     def islower(self):   是否小写 s.islower() -> bool                  return true if all cased characters in s are lowercase and there isat least one cased character in s, false otherwise.return false     def isspace(self):  s.isspace() -> bool                  return true if all characters in s are whitespaceand there is at least one character in s, false otherwise.return false     def istitle(self):  s.istitle() -> bool                  return true if s is a titlecased string and there is at least one         character in s, i.e. uppercase characters may only follow uncased         characters and lowercase characters only cased ones. return false         otherwise.return false     def isupper(self):  s.isupper() -> bool                  return true if all cased characters in s are uppercase and there isat least one cased character in s, false otherwise.return false     def join(self, iterable):   连接 s.join(iterable) -> string                  return a string which is the concatenation of the strings in the         iterable.  the separator between elements is s.return      def ljust(self, width, fillchar=none):   内容左对齐,右侧填充 s.ljust(width[, fillchar]) -> string                  return s left-justified in a string of length width. padding isdone using the specified fill character (default is a space).return      def lower(self):   变小写 s.lower() -> string                  return a copy of the string s converted to lowercase.return      def lstrip(self, chars=none):   移除左侧空白 s.lstrip([chars]) -> string or unicode                  return a copy of the string s with leading whitespace removed.         if chars is given and not none, remove characters in chars instead.         if chars is unicode, s will be converted to unicode before strippingreturn      def partition(self, sep):   分割,前,中,后三部分 s.partition(sep) -> (head, sep, tail)                  search for the separator sep in s, and return the part before it,         the separator itself, and the part after it.  if the separator is notfound, return s and two empty strings.pass     def replace(self, old, new, count=none):   替换 s.replace(old, new[, count]) -> string                  return a copy of string s with all occurrences of substring         old replaced by new.  if the optional argument count isgiven, only the first count occurrences are replaced.return      def rfind(self, sub, start=none, end=none):  s.rfind(sub [,start [,end]]) -> int                  return the highest index in s where substring sub is found,         such that sub is contained within s[start:end].  optional         arguments start and end are interpreted as in slice notation.                  return -1 on failure.return 0     def rindex(self, sub, start=none, end=none):  s.rindex(sub [,start [,end]]) -> int                  like s.rfind() but raise valueerror when the substring is not found.return 0     def rjust(self, width, fillchar=none):  s.rjust(width[, fillchar]) -> string                  return s right-justified in a string of length width. padding isdone using the specified fill character (default is a space)return      def rpartition(self, sep):  s.rpartition(sep) -> (head, sep, tail)                  search for the separator sep in s, starting at the end of s, and returnthe part before it, the separator itself, and the part after it.  if the         separator is not found, return two empty strings and s.pass     def rsplit(self, sep=none, maxsplit=none):  s.rsplit([sep [,maxsplit]]) -> list of strings                  return a list of the words in the string s, using sep as the         delimiter string, starting at the end of the string and working         to the front.  if maxsplit is given, at most maxsplit splits are         done. if sep is not specified or is none, any whitespace stringis a separator.return []     def rstrip(self, chars=none):  s.rstrip([chars]) -> string or unicode                  return a copy of the string s with trailing whitespace removed.         if chars is given and not none, remove characters in chars instead.         if chars is unicode, s will be converted to unicode before strippingreturn      def split(self, sep=none, maxsplit=none):   分割, maxsplit最多分割几次 s.split([sep [,maxsplit]]) -> list of strings                  return a list of the words in the string s, using sep as the         delimiter string.  if maxsplit is given, at most maxsplit         splits are done. if sep is not specified or is none, any         whitespace string is a separator and empty strings are removedfrom the result.return []     def splitlines(self, keepends=false):   根据换行分割 s.splitlines(keepends=false) -> list of strings                  return a list of the lines in s, breaking at line boundaries.         line breaks are not included in the resulting list unless keependsis given and true.return []     def startswith(self, prefix, start=none, end=none):   是否起始 s.startswith(prefix[, start[, end]]) -> bool                  return true if s starts with the specified prefix, false otherwise.         with optional start, test s beginning at that position.         with optional end, stop comparing s at that position.         prefix can also be a tuple of strings to try.return false     def strip(self, chars=none):   移除两段空白 s.strip([chars]) -> string or unicode                  return a copy of the string s with leading and trailing         whitespace removed.         if chars is given and not none, remove characters in chars instead.         if chars is unicode, s will be converted to unicode before strippingreturn      def swapcase(self):   大写变小写,小写变大写 s.swapcase() -> string                  return a copy of the string s with uppercase characters         converted to lowercase and vice versa.return      def title(self):  s.title() -> string                  return a titlecased version of s, i.e. words start with uppercase         characters, all remaining cased characters have lowercase.return      def translate(self, table, deletechars=none):  转换,需要先做一个对应表,最后一个表示删除字符集合         intab = aeiououttab = 12345trantab = maketrans(intab, outtab)         str = this is string example....wow!!!print str.translate(trantab, 'xm')s.translate(table [,deletechars]) -> string                  return a copy of the string s, where all characters occurringin the optional argument deletechars are removed, and the         remaining characters have been mapped through the given         translation table, which must be a string of length 256 or none.         if the table argument is none, no translation is applied andthe operation simply removes the characters in deletechars.return      def upper(self):  s.upper() -> string                  return a copy of the string s converted to uppercase.return      def zfill(self, width):  方法返回指定长度的字符串,原字符串右对齐,前面填充0。s.zfill(width) -> string                  pad a numeric string s with zeros on the left, to fill a field         of the specified width.  the string s is never truncated.return      def _formatter_field_name_split(self, *args, **kwargs): # real signature unknown         pass     def _formatter_parser(self, *args, **kwargs): # real signature unknown         pass     def __add__(self, y):   x.__add__(y) 209861d5cd2975725c730f519ed6ad71 x+y pass     def __contains__(self, y):   x.__contains__(y) 209861d5cd2975725c730f519ed6ad71 y in x pass     def __eq__(self, y):   x.__eq__(y) 209861d5cd2975725c730f519ed6ad71 x==y pass     def __format__(self, format_spec):  s.__format__(format_spec) -> string                  return a formatted version of s as described by format_spec.return      def __getattribute__(self, name):   x.__getattribute__('name') 209861d5cd2975725c730f519ed6ad71 x.name pass     def __getitem__(self, y):   x.__getitem__(y) 209861d5cd2975725c730f519ed6ad71 x[y] pass     def __getnewargs__(self, *args, **kwargs): # real signature unknown         pass     def __getslice__(self, i, j):  x.__getslice__(i, j) 209861d5cd2975725c730f519ed6ad71 x[i:j]                                        use of negative indices is not supported.pass     def __ge__(self, y):   x.__ge__(y) 209861d5cd2975725c730f519ed6ad71 x>=y pass     def __gt__(self, y):   x.__gt__(y) 209861d5cd2975725c730f519ed6ad71 x>y pass     def __hash__(self):   x.__hash__() 209861d5cd2975725c730f519ed6ad71 hash(x) pass     def __init__(self, string=''): # known special case of str.__init__str(object='') -> string                  return a nice string representation of the object.         if the argument is a string, the return value is the same object.# (copied from class doc)pass     def __len__(self):   x.__len__() 209861d5cd2975725c730f519ed6ad71 len(x) pass     def __le__(self, y):   x.__le__(y) 209861d5cd2975725c730f519ed6ad71 x size of s in memory, in bytes pass     def __str__(self):   x.__str__() 209861d5cd2975725c730f519ed6ad71 str(x) pass
str
4、列表
创建列表:
name_list = ['alex', 'seven', 'eric'] 或 name_list = list(['alex', 'seven', 'eric'])
基本操作:
索引
切片
追加
删除
长度
切片
循环
包含
class list(object):"""list() -> new empty list list(iterable) -> new list initialized from iterable's items"""def append(self, p_object): # real signature unknown; restored from __doc__""" l.append(object) -- append object to end """passdef count(self, value): # real signature unknown; restored from __doc__""" l.count(value) -> integer -- return number of occurrences of value """return 0def extend(self, iterable): # real signature unknown; restored from __doc__""" l.extend(iterable) -- extend list by appending elements from the iterable """passdef index(self, value, start=none, stop=none): # real signature unknown; restored from __doc__"""l.index(value, [start, [stop]]) -> integer -- return first index of value. raises valueerror if the value is not present."""return 0def insert(self, index, p_object): # real signature unknown; restored from __doc__""" l.insert(index, object) -- insert object before index """passdef pop(self, index=none): # real signature unknown; restored from __doc__"""l.pop([index]) -> item -- remove and return item at index (default last). raises indexerror if list is empty or index is out of range."""passdef remove(self, value): # real signature unknown; restored from __doc__"""l.remove(value) -- remove first occurrence of value. raises valueerror if the value is not present."""passdef reverse(self): # real signature unknown; restored from __doc__""" l.reverse() -- reverse *in place* """passdef sort(self, cmp=none, key=none, reverse=false): # real signature unknown; restored from __doc__"""l.sort(cmp=none, key=none, reverse=false) -- stable sort *in place*; cmp(x, y) -> -1, 0, 1"""passdef __add__(self, y): # real signature unknown; restored from __doc__""" x.__add__(y) <==> x+y """passdef __contains__(self, y): # real signature unknown; restored from __doc__""" x.__contains__(y) <==> y in x """passdef __delitem__(self, y): # real signature unknown; restored from __doc__""" x.__delitem__(y) <==> del x[y] """passdef __delslice__(self, i, j): # real signature unknown; restored from __doc__"""x.__delslice__(i, j) <==> del x[i:j] use of negative indices is not supported."""passdef __eq__(self, y): # real signature unknown; restored from __doc__""" x.__eq__(y) <==> x==y """passdef __getattribute__(self, name): # real signature unknown; restored from __doc__""" x.__getattribute__('name') <==> x.name """passdef __getitem__(self, y): # real signature unknown; restored from __doc__""" x.__getitem__(y) <==> x[y] """passdef __getslice__(self, i, j): # real signature unknown; restored from __doc__"""x.__getslice__(i, j) <==> x[i:j] use of negative indices is not supported."""passdef __ge__(self, y): # real signature unknown; restored from __doc__""" x.__ge__(y) <==> x>=y """passdef __gt__(self, y): # real signature unknown; restored from __doc__""" x.__gt__(y) <==> x>y """passdef __iadd__(self, y): # real signature unknown; restored from __doc__""" x.__iadd__(y) <==> x+=y """passdef __imul__(self, y): # real signature unknown; restored from __doc__""" x.__imul__(y) <==> x*=y """passdef __init__(self, seq=()): # known special case of list.__init__"""list() -> new empty list list(iterable) -> new list initialized from iterable's items # (copied from class doc)"""passdef __iter__(self): # real signature unknown; restored from __doc__""" x.__iter__() <==> iter(x) """passdef __len__(self): # real signature unknown; restored from __doc__""" x.__len__() <==> len(x) """passdef __le__(self, y): # real signature unknown; restored from __doc__""" x.__le__(y) <==> x<=y """passdef __lt__(self, y): # real signature unknown; restored from __doc__""" x.__lt__(y) <==> x<y """passdef __mul__(self, n): # real signature unknown; restored from __doc__""" x.__mul__(n) <==> x*n """pass@staticmethod # known case of __new__def __new__(s, *more): # real signature unknown; restored from __doc__""" t.__new__(s, ...) -> a new object with type s, a subtype of t """passdef __ne__(self, y): # real signature unknown; restored from __doc__""" x.__ne__(y) <==> x!=y """passdef __repr__(self): # real signature unknown; restored from __doc__""" x.__repr__() <==> repr(x) """passdef __reversed__(self): # real signature unknown; restored from __doc__""" l.__reversed__() -- return a reverse iterator over the list """passdef __rmul__(self, n): # real signature unknown; restored from __doc__""" x.__rmul__(n) <==> n*x """passdef __setitem__(self, i, y): # real signature unknown; restored from __doc__""" x.__setitem__(i, y) <==> x[i]=y """passdef __setslice__(self, i, j, y): # real signature unknown; restored from __doc__"""x.__setslice__(i, j, y) <==> x[i:j]=y use of negative indices is not supported."""passdef __sizeof__(self): # real signature unknown; restored from __doc__""" l.__sizeof__() -- size of l in memory, in bytes """pass__hash__ = none
list
5、元祖
创建元祖:
ages = (11, 22, 33, 44, 55) 或 ages = tuple((11, 22, 33, 44, 55))
基本操作:
索引
切片
循环
长度
包含
lass tuple(object):"""tuple() -> empty tuple tuple(iterable) -> tuple initialized from iterable's items if the argument is a tuple, the return value is the same object."""def count(self, value): # real signature unknown; restored from __doc__""" t.count(value) -> integer -- return number of occurrences of value """return 0def index(self, value, start=none, stop=none): # real signature unknown; restored from __doc__"""t.index(value, [start, [stop]]) -> integer -- return first index of value. raises valueerror if the value is not present."""return 0def __add__(self, y): # real signature unknown; restored from __doc__""" x.__add__(y) <==> x+y """passdef __contains__(self, y): # real signature unknown; restored from __doc__""" x.__contains__(y) <==> y in x """passdef __eq__(self, y): # real signature unknown; restored from __doc__""" x.__eq__(y) <==> x==y """passdef __getattribute__(self, name): # real signature unknown; restored from __doc__""" x.__getattribute__('name') <==> x.name """passdef __getitem__(self, y): # real signature unknown; restored from __doc__""" x.__getitem__(y) <==> x[y] """passdef __getnewargs__(self, *args, **kwargs): # real signature unknownpassdef __getslice__(self, i, j): # real signature unknown; restored from __doc__"""x.__getslice__(i, j) <==> x[i:j] use of negative indices is not supported."""passdef __ge__(self, y): # real signature unknown; restored from __doc__""" x.__ge__(y) <==> x>=y """passdef __gt__(self, y): # real signature unknown; restored from __doc__""" x.__gt__(y) <==> x>y """passdef __hash__(self): # real signature unknown; restored from __doc__""" x.__hash__() <==> hash(x) """passdef __init__(self, seq=()): # known special case of tuple.__init__"""tuple() -> empty tuple tuple(iterable) -> tuple initialized from iterable's items if the argument is a tuple, the return value is the same object. # (copied from class doc)"""passdef __iter__(self): # real signature unknown; restored from __doc__""" x.__iter__() <==> iter(x) """passdef __len__(self): # real signature unknown; restored from __doc__""" x.__len__() <==> len(x) """passdef __le__(self, y): # real signature unknown; restored from __doc__""" x.__le__(y) <==> x<=y """passdef __lt__(self, y): # real signature unknown; restored from __doc__""" x.__lt__(y) <==> x<y """passdef __mul__(self, n): # real signature unknown; restored from __doc__""" x.__mul__(n) <==> x*n """pass@staticmethod # known case of __new__def __new__(s, *more): # real signature unknown; restored from __doc__""" t.__new__(s, ...) -> a new object with type s, a subtype of t """passdef __ne__(self, y): # real signature unknown; restored from __doc__""" x.__ne__(y) <==> x!=y """passdef __repr__(self): # real signature unknown; restored from __doc__""" x.__repr__() <==> repr(x) """passdef __rmul__(self, n): # real signature unknown; restored from __doc__""" x.__rmul__(n) <==> n*x """passdef __sizeof__(self): # real signature unknown; restored from __doc__""" t.__sizeof__() -- size of t in memory, in bytes """pass
tuple
6、字典(无序)
创建字典:
person = {"name": "mr.wu", 'age': 18} 或 person = dict({"name": "mr.wu", 'age': 18})
常用操作:
索引
新增
删除
键、值、键值对
循环
长度
class dict(object):"""dict() -> new empty dictionary dict(mapping) -> new dictionary initialized from a mapping object's (key, value) pairs dict(iterable) -> new dictionary initialized as if via: d = {} for k, v in iterable: d[k] = v dict(**kwargs) -> new dictionary initialized with the name=value pairs in the keyword argument list. for example: dict(one=1, two=2)"""def clear(self): # real signature unknown; restored from __doc__""" 清除内容 """""" d.clear() -> none. remove all items from d. """passdef copy(self): # real signature unknown; restored from __doc__""" 浅拷贝 """""" d.copy() -> a shallow copy of d """pass@staticmethod # known casedef fromkeys(s, v=none): # real signature unknown; restored from __doc__"""dict.fromkeys(s[,v]) -> new dict with keys from s and values equal to v. v defaults to none."""passdef get(self, k, d=none): # real signature unknown; restored from __doc__""" 根据key获取值,d是默认值 """""" d.get(k[,d]) -> d[k] if k in d, else d. d defaults to none. """passdef has_key(self, k): # real signature unknown; restored from __doc__""" 是否有key """""" d.has_key(k) -> true if d has a key k, else false """return falsedef items(self): # real signature unknown; restored from __doc__""" 所有项的列表形式 """""" d.items() -> list of d's (key, value) pairs, as 2-tuples """return []def iteritems(self): # real signature unknown; restored from __doc__""" 项可迭代 """""" d.iteritems() -> an iterator over the (key, value) items of d """passdef iterkeys(self): # real signature unknown; restored from __doc__""" key可迭代 """""" d.iterkeys() -> an iterator over the keys of d """passdef itervalues(self): # real signature unknown; restored from __doc__""" value可迭代 """""" d.itervalues() -> an iterator over the values of d """passdef keys(self): # real signature unknown; restored from __doc__""" 所有的key列表 """""" d.keys() -> list of d's keys """return []def pop(self, k, d=none): # real signature unknown; restored from __doc__""" 获取并在字典中移除 """"""d.pop(k[,d]) -> v, remove specified key and return the corresponding value. if key is not found, d is returned if given, otherwise keyerror is raised"""passdef popitem(self): # real signature unknown; restored from __doc__""" 获取并在字典中移除 """"""d.popitem() -> (k, v), remove and return some (key, value) pair as a 2-tuple; but raise keyerror if d is empty."""passdef setdefault(self, k, d=none): # real signature unknown; restored from __doc__""" 如果key不存在,则创建,如果存在,则返回已存在的值且不修改 """""" d.setdefault(k[,d]) -> d.get(k,d), also set d[k]=d if k not in d """passdef update(self, e=none, **f): # known special case of dict.update""" 更新 {'name':'alex', 'age': 18000} [('name','sbsbsb'),]""""""d.update([e, ]**f) -> none. update d from dict/iterable e and f. if e present and has a .keys() method, does: for k in e: d[k] = e[k] if e present and lacks .keys() method, does: for (k, v) in e: d[k] = v in either case, this is followed by: for k in f: d[k] = f[k]"""passdef values(self): # real signature unknown; restored from __doc__""" 所有的值 """""" d.values() -> list of d's values """return []def viewitems(self): # real signature unknown; restored from __doc__""" 所有项,只是将内容保存至view对象中 """""" d.viewitems() -> a set-like object providing a view on d's items """passdef viewkeys(self): # real signature unknown; restored from __doc__""" d.viewkeys() -> a set-like object providing a view on d's keys """passdef viewvalues(self): # real signature unknown; restored from __doc__""" d.viewvalues() -> an object providing a view on d's values """passdef __cmp__(self, y): # real signature unknown; restored from __doc__""" x.__cmp__(y) <==> cmp(x,y) """passdef __contains__(self, k): # real signature unknown; restored from __doc__""" d.__contains__(k) -> true if d has a key k, else false """return falsedef __delitem__(self, y): # real signature unknown; restored from __doc__""" x.__delitem__(y) <==> del x[y] """passdef __eq__(self, y): # real signature unknown; restored from __doc__""" x.__eq__(y) <==> x==y """passdef __getattribute__(self, name): # real signature unknown; restored from __doc__""" x.__getattribute__('name') <==> x.name """passdef __getitem__(self, y): # real signature unknown; restored from __doc__""" x.__getitem__(y) <==> x[y] """passdef __ge__(self, y): # real signature unknown; restored from __doc__""" x.__ge__(y) <==> x>=y """passdef __gt__(self, y): # real signature unknown; restored from __doc__""" x.__gt__(y) <==> x>y """passdef __init__(self, seq=none, **kwargs): # known special case of dict.__init__"""dict() -> new empty dictionary dict(mapping) -> new dictionary initialized from a mapping object's (key, value) pairs dict(iterable) -> new dictionary initialized as if via: d = {} for k, v in iterable: d[k] = v dict(**kwargs) -> new dictionary initialized with the name=value pairs in the keyword argument list. for example: dict(one=1, two=2) # (copied from class doc)"""passdef __iter__(self): # real signature unknown; restored from __doc__""" x.__iter__() <==> iter(x) """passdef __len__(self): # real signature unknown; restored from __doc__""" x.__len__() <==> len(x) """passdef __le__(self, y): # real signature unknown; restored from __doc__""" x.__le__(y) <==> x<=y """passdef __lt__(self, y): # real signature unknown; restored from __doc__""" x.__lt__(y) <==> x<y """pass@staticmethod # known case of __new__def __new__(s, *more): # real signature unknown; restored from __doc__""" t.__new__(s, ...) -> a new object with type s, a subtype of t """passdef __ne__(self, y): # real signature unknown; restored from __doc__""" x.__ne__(y) <==> x!=y """passdef __repr__(self): # real signature unknown; restored from __doc__""" x.__repr__() <==> repr(x) """passdef __setitem__(self, i, y): # real signature unknown; restored from __doc__""" x.__setitem__(i, y) <==> x[i]=y """passdef __sizeof__(self): # real signature unknown; restored from __doc__""" d.__sizeof__() -> size of d in memory, in bytes """pass__hash__ = none
dict
ps:循环,range,continue 和 break
其他1、for循环
用户按照顺序循环可迭代对象中的内容,
ps:break、continue
li = [11,22,33,44] for item in li: print item
2、enumrate
为可迭代的对象添加序号
li = [11,22,33] for k,v in enumerate(li, 1): print(k,v)
3、range和xrange
指定范围,生成指定的数字
print range(1, 10) # 结果:[1, 2, 3, 4, 5, 6, 7, 8, 9] print range(1, 10, 2) # 结果:[1, 3, 5, 7, 9] print range(30, 0, -2) # 结果:[30, 28, 26, 24, 22, 20, 18, 16, 14, 12, 10, 8, 6, 4, 2]
练习题一、元素分类
有如下值集合 [11,22,33,44,55,66,77,88,99,90...],将所有大于 66 的值保存至字典的第一个key中,将小于 66 的值保存至第二个key的值中。
即: {'k1': 大于66的所有值, 'k2': 小于66的所有值}
二、查找
查找列表中元素,移除每个元素的空格,并查找以 a或a开头 并且以 c 结尾的所有元素。
li = ["alec", " aric", "alex", "tony", "rain"]
tu = ("alec", " aric", "alex", "tony", "rain")
dic = {'k1': "alex", 'k2': ' aric', "k3": "alex", "k4": "tony"}
三、输出商品列表,用户输入序号,显示用户选中的商品
商品 li = ["手机", "电脑", '鼠标垫', '游艇']
四、购物车
功能要求:
要求用户输入总资产,例如:2000
显示商品列表,让用户根据序号选择商品,加入购物车
购买,如果商品总额大于总资产,提示账户余额不足,否则,购买成功。
附加:可充值、某商品移除购物车
goods = [ {"name": "电脑", "price": 1999}, {"name": "鼠标", "price": 10}, {"name": "游艇", "price": 20}, {"name": "美女", "price": 998}, ]
五、用户交互,显示省市县三级联动的选择
dic = { "河北": { "石家庄": ["鹿泉", "藁城", "元氏"], "邯郸": ["永年", "涉县", "磁县"], } "河南": { ... } "山西": { ... } }
以上就是python开发(3):python基本数据类型的详细内容。
该用户其它信息

VIP推荐

免费发布信息,免费发布B2B信息网站平台 - 三六零分类信息网 沪ICP备09012988号-2
企业名录 Product