本章內容:
- Python 運算符(算術運算、比較運算、賦值運算、邏輯運算、成員運算)
- 基本數據類型(數字、布爾值、字符串、列表、元組、字典、set集合)
- for 循環
- enumrate
- range和xrange
- 編碼與進制轉換
Python 運算符 |
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
在64位系統上,整數的位數為64位,取值范圍為-2**63~2**63-1,即-9223372036854775808~9223372036854775807
#返回表示該數字的時占用的最少位數 >>> (951).bit_length() 10 #返回絕對值 >>> (95).__abs__() 95 >>> (-95).__abs__() 95 #用來區分數字和字符串的 >>> (95).__add__(1) 96 >>> (95).__add__("1") NotImplemented #判斷一個整數對象是否為0,如果為0,則返回False,如果不為0,則返回True >>> (95).__bool__() True >>> (0).__bool__() False #判斷兩個值是否相等 >>> (95).__eq__(95) True >>> (95).__eq__(9) False #判斷是否不等於 >>> (95).__ne__(9) True >>> (95).__ne__(95) False #判斷是否大於等於 >>> (95).__ge__(9) True >>> (95).__ge__(99) False #判斷是否大於 >>> (95).__gt__(9) True >>> (95).__gt__(99) False #判斷是否小於等於 >>> (95).__le__(99) True >>> (95).__le__(9) False #判斷是否小於 >>> (95).__lt__(9) False >>> (95).__lt__(99) True #加法運算 >>> (95).__add__(5) 100 #減法運算 >>> (95).__sub__(5) 90 #乘法運算 >>> (95).__mul__(10) 950 #除法運算 >>> (95).__truediv__(5) 19.0 #取模運算 >>> (95).__mod__(9) 5 #冪運算 >>> (2).__pow__(10) 1024 #整除,保留結果的整數部分 >>> (95).__floordiv__(9) >>> #轉換為整型 >>> (9.5).__int__() 9 #返回一個對象的整數部分 >>> (9.5).__trunc__() 9 #將正數變為負數,將負數變為正數 >>> (95).__neg__() -95 >>> (-95).__neg__() 95 #將一個正數轉為字符串 >>> a = 95 >>> a = a.__str__() >>> print(type(a)) <class 'str'> #將一個整數轉換成浮點型 >>> (95).__float__() 95.0 #轉換對象的類型 >>> (95).__format__('f') '95.000000' >>> (95).__format__('b') '1011111' #在內存中占多少個字節 >>> a = 95 >>> a.__sizeof__() 28

class int(object): """ int(x=0) -> integer int(x, base=10) -> integer Convert a number or string to an integer, or return 0 if no arguments are given. If x is a number, return x.__int__(). For floating point numbers, this truncates towards zero. If x is not a number or if base is given, then x must be a string, bytes, or bytearray instance 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) """ def bit_length(self): # real signature unknown; restored from __doc__ """ int.bit_length() -> int Number of bits necessary to represent self in binary. """ """ 表示該數字返回時占用的最少位數 >>> (951).bit_length() 10 """ return 0 def conjugate(self, *args, **kwargs): # real signature unknown """ Returns self, the complex conjugate of any int.""" """ 返回該復數的共軛復數 #返回復數的共軛復數 >>> (95 + 11j).conjugate() (95-11j) #返回復數的實數部分 >>> (95 + 11j).real 95.0 #返回復數的虛數部分 >>> (95 + 11j).imag 11.0 """ pass @classmethod # known case def from_bytes(cls, bytes, byteorder, *args, **kwargs): # real signature unknown; NOTE: unreliably restored from __doc__ """ int.from_bytes(bytes, byteorder, *, signed=False) -> int Return the integer represented by the given array of bytes. The bytes argument must be a bytes-like object (e.g. bytes or bytearray). The byteorder argument determines the byte order used to represent the integer. If byteorder is 'big', the most significant byte is at the beginning of the byte array. If byteorder is 'little', the most significant byte is at the end of the byte array. To request the native byte order of the host system, use `sys.byteorder' as the byte order value. The signed keyword-only argument indicates whether two's complement is used to represent the integer. """ """ 這個方法是在Python3.2的時候加入的,python官方給出了下面幾個例子: >>> int.from_bytes(b'\x00\x10', byteorder='big') >>> int.from_bytes(b'\x00\x10', byteorder='little') >>> int.from_bytes(b'\xfc\x00', byteorder='big', signed=True) -1024 >>> int.from_bytes(b'\xfc\x00', byteorder='big', signed=False) >>> int.from_bytes([255, 0, 0], byteorder='big') """ pass def to_bytes(self, length, byteorder, *args, **kwargs): # real signature unknown; NOTE: unreliably restored from __doc__ """ int.to_bytes(length, byteorder, *, signed=False) -> bytes Return an array of bytes representing an integer. The integer is represented using length bytes. An OverflowError is raised if the integer is not representable with the given number of bytes. The byteorder argument determines the byte order used to represent the integer. If byteorder is 'big', the most significant byte is at the beginning of the byte array. If byteorder is 'little', the most significant byte is at the end of the byte array. To request the native byte order of the host system, use `sys.byteorder' as the byte order value. The signed keyword-only argument determines whether two's complement is used to represent the integer. If signed is False and a negative integer is given, an OverflowError is raised. """ """ python官方給出了下面幾個例子: >>> (1024).to_bytes(2, byteorder='big') b'\x04\x00' >>> (1024).to_bytes(10, byteorder='big') b'\x00\x00\x00\x00\x00\x00\x00\x00\x04\x00' >>> (-1024).to_bytes(10, byteorder='big', signed=True) b'\xff\xff\xff\xff\xff\xff\xff\xff\xfc\x00' >>> x = 1000 >>> x.to_bytes((x.bit_length() // 8) + 1, byteorder='little') b'\xe8\x03' """ pass def __abs__(self, *args, **kwargs): # real signature unknown """ abs(self)""" """ 返回一個絕對值 >>> (95).__abs__() -95 >>> (-95).__abs__() 95 """ pass def __add__(self, *args, **kwargs): # real signature unknown """ Return self+value.""" """ 加法,也可區分數字和字符串 >>> (95).__add__(1) 96 >>> (95).__add__("1") NotImplemented >>> """ pass def __and__(self, *args, **kwargs): # real signature unknown """ Return self&value.""" pass def __bool__(self, *args, **kwargs): # real signature unknown """ self != 0 """ """ 判斷一個整數對象是否為0,如果為0,則返回False,如果不為0,則返回True >>> (95).__bool__() True >>> (0).__bool__() False """ pass def __ceil__(self, *args, **kwargs): # real signature unknown """ Ceiling of an Integral returns itself. """ pass def __divmod__(self, *args, **kwargs): # real signature unknown """ Return divmod(self, value). """ """ 返回一個元組,第一個元素為商,第二個元素為余數 >>> (9).__divmod__(5) (1, 4) """ pass def __eq__(self, *args, **kwargs): # real signature unknown """ Return self==value. """ """ 判斷兩個值是否相等 >>> (95).__eq__(95) True >>> (95).__eq__(9) False """ pass def __float__(self, *args, **kwargs): # real signature unknown """ float(self) """ """ 將一個整數轉換成浮點型 >>> (95).__float__() 95.0 """ pass def __floordiv__(self, *args, **kwargs): # real signature unknown """ Return self//value. """ """ 整除,保留結果的整數部分 >>> (95).__floordiv__(9) 10 """ pass def __floor__(self, *args, **kwargs): # real signature unknown """ Flooring an Integral returns itself. """ """ 返回本身 >>> (95).__floor__() 95 """ pass def __format__(self, *args, **kwargs): # real signature unknown """ 轉換對象的類型 >>> (95).__format__('f') '95.000000' >>> (95).__format__('b') '1011111' """ pass def __getattribute__(self, *args, **kwargs): # real signature unknown """ Return getattr(self, name). """ """ 判斷這個類中是否包含這個屬性,如果包含則打印出值,如果不包含,就報錯了 >>> (95).__getattribute__('__abs__') <method-wrapper '__abs__' of int object at 0x9f93c0> >>> (95).__getattribute__('__aaa__') Traceback (most recent call last): File "<stdin>", line 1, in <module> AttributeError: 'int' object has no attribute '__aaa__' """ pass def __getnewargs__(self, *args, **kwargs): # real signature unknown pass def __ge__(self, *args, **kwargs): # real signature unknown """ Return self>=value. """ """ 判斷是否大於等於 >>> (95).__ge__(9) True >>> (95).__ge__(99) False """ pass def __gt__(self, *args, **kwargs): # real signature unknown """ Return self>value. """ """ 判斷是否大於 >>> (95).__gt__(9) True >>> (95).__gt__(99) False """ pass def __hash__(self, *args, **kwargs): # real signature unknown """ Return hash(self). """ """ 計算哈希值,整數返回本身 >>> (95).__hash__() 95 >>> (95.95).__hash__() 2190550858753015903 """ pass def __index__(self, *args, **kwargs): # real signature unknown """ Return self converted to an integer, if self is suitable for use as an index into a list. """ pass def __init__(self, x, base=10): # known special case of int.__init__ """ 這個是一個類的初始化方法,當int類被實例化的時候,這個方法默認就會被執行 """ """ int(x=0) -> integer int(x, base=10) -> integer Convert a number or string to an integer, or return 0 if no arguments are given. If x is a number, return x.__int__(). For floating point numbers, this truncates towards zero. If x is not a number or if base is given, then x must be a string, bytes, or bytearray instance 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) # (copied from class doc) """ pass def __int__(self, *args, **kwargs): # real signature unknown """ int(self) """ """ 轉換為整型 >>> (9.5).__int__() 9 """ pass def __invert__(self, *args, **kwargs): # real signature unknown """ ~self """ pass def __le__(self, *args, **kwargs): # real signature unknown """ Return self<=value. """ """ 判斷是否小於等於 >>> (95).__le__(99) True >>> (95).__le__(9) False """ pass def __lshift__(self, *args, **kwargs): # real signature unknown """ Return self<<value. """ """ 用於二進制位移,這個是向左移動 >>> bin(95) '0b1011111' >>> a = (95).__lshift__(2) >>> bin(a) '0b101111100' >>> """ pass def __lt__(self, *args, **kwargs): # real signature unknown """ Return self<value. """ """ 判斷是否小於 >>> (95).__lt__(9) False >>> (95).__lt__(99) True """ pass def __mod__(self, *args, **kwargs): # real signature unknown """ Return self%value. """ """ 取模 % >>> (95).__mod__(9) """ pass def __mul__(self, *args, **kwargs): # real signature unknown """ Return self*value. """ """ 乘法 * >>> (95).__mul__(10) """ pass def __neg__(self, *args, **kwargs): # real signature unknown """ -self """ """ 將正數變為負數,將負數變為正數 >>> (95).__neg__() -95 >>> (-95).__neg__() 95 """ pass @staticmethod # known case of __new__ def __new__(*args, **kwargs): # real signature unknown """ Create and return a new object. See help(type) for accurate signature. """ pass def __ne__(self, *args, **kwargs): # real signature unknown """ Return self!=value. """ """ 不等於 >>> (95).__ne__(9) True >>> (95).__ne__(95) False """ pass def __or__(self, *args, **kwargs): # real signature unknown """ Return self|value. """ """ 二進制或的關系,只要有一個為真,就為真 >>> a = 4 >>> b = 0 >>> a.__or__(b) # a --> 00000100 b --> 00000000 >>> b = 1 # b --> 00000001 >>> a.__or__(b) """ pass def __pos__(self, *args, **kwargs): # real signature unknown """ +self """ pass def __pow__(self, *args, **kwargs): # real signature unknown """ Return pow(self, value, mod). """ """ 冪 >>> (2).__pow__(10) 1024 """ pass def __radd__(self, *args, **kwargs): # real signatre unknown """ Return value+self. """ """ 加法,將value放在前面 >>> a.__radd__(b) # 相當於 b+a """ pass def __rand__(self, *args, **kwargs): # real signature unknown """ Return value&self. """ """ 二進制與的關系,兩個都為真,才為真,有一個為假,就為假 """ pass def __rdivmod__(self, *args, **kwargs): # real signature unknown """ Return divmod(value, self). """ pass def __repr__(self, *args, **kwargs): # real signature unknown """ Return repr(self). """ pass def __rfloordiv__(self, *args, **kwargs): # real signature unknown """ Return value//self. """ pass def __rlshift__(self, *args, **kwargs): # real signature unknown """ Return value<<self. """ pass def __rmod__(self, *args, **kwargs): # real signature unknown """ Return value%self. """ pass def __rmul__(self, *args, **kwargs): # real signature unknown """ Return value*self. """ pass def __ror__(self, *args, **kwargs): # real signature unknown """ Return value|self. """ pass def __round__(self, *args, **kwargs): # real signature unknown """ Rounding an Integral returns itself. Rounding with an ndigits argument also returns an integer. """ pass def __rpow__(self, *args, **kwargs): # real signature unknown """ Return pow(value, self, mod). """ pass def __rrshift__(self, *args, **kwargs): # real signature unknown """ Return value>>self. """ pass def __rshift__(self, *args, **kwargs): # real signature unknown """ Return self>>value. """ pass def __rsub__(self, *args, **kwargs): # real signature unknown """ Return value-self. """ pass def __rtruediv__(self, *args, **kwargs): # real signature unknown """ Return value/self. """ pass def __rxor__(self, *args, **kwargs): # real signature unknown """ Return value^self. """ pass def __sizeof__(self, *args, **kwargs): # real signature unknown """ Returns size in memory, in bytes """ """ 在內存中占多少個字節 >>> a = 95 >>> a.__sizeof__() 28 """ pass def __str__(self, *args, **kwargs): # real signature unknown """ Return str(self). """ """ 將一個正數轉為字符串 >>> a = 95 >>> a = a.__str__() >>> print(type(a)) <class 'str'> """ pass def __sub__(self, *args, **kwargs): # real signature unknown """ Return self-value. """ """ 減法運算 >>> (95).__sub__(5) 90 """ pass def __truediv__(self, *args, **kwargs): # real signature unknown """ Return self/value. """ """ 除法運算 >>> (95).__truediv__(5) 19.0 """ pass def __trunc__(self, *args, **kwargs): # real signature unknown """ Truncating an Integral returns itself. """ """ 返回一個對象的整數部分 >>> (95.95).__trunc__() 95 """ pass def __xor__(self, *args, **kwargs): # real signature unknown """ Return self^value. """ """ 將對象與值進行二進制的或運算,一個為真,就為真 >>> a = 4 >>> b = 1 >>> a.__xor__(b) >>> c = 0 >>> a.__xor__(c) """ pass denominator = property(lambda self: object(), lambda self, v: None, lambda self: None) # default """ 分母 = 1 """ """the denominator of a rational number in lowest terms""" imag = property(lambda self: object(), lambda self, v: None, lambda self: None) # default """ 虛數 """ """the imaginary part of a complex number""" numerator = property(lambda self: object(), lambda self, v: None, lambda self: None) # default """ 分子 = 數字大小 """ """the numerator of a rational number in lowest terms""" real = property(lambda self: object(), lambda self, v: None, lambda self: None) # default """ 實屬 """ """the real part of a complex number"""
2、布爾值
真或假
1 或 0
3、字符串
"Hello World!"
s = "nick" #索引 print(s[0]) print(s[1]) print(s[2]) print(s[3]) #長度 ret = len(s) print(ret) #切片 print(s[1:3]) print(s.rsplit("ic")) #替換 name = "Nick is good, Today is nice day." a = name.replace("good","man") print(a) #連接兩個字符串 li = ["nick","serven"] a = "".join(li) b = "_".join(li) print(a) print(b) #指定的分隔符將字符串進行分割 a = s.rpartition("i") print(a) #分割,前,中,后三部分 name = "Nick is good, Today is nice day." a = name.partition("good") print(a) #for循環 for i in s: print(i) for i in range(5): print(i) # 反轉 s = 'ssssssssss111' print(s[::-1]) # 111ssssssssss

class str(object): """ str(object='') -> str str(bytes_or_buffer[, encoding[, errors]]) -> str Create a new string object from the given object. If encoding or errors is specified, then the object must expose a data buffer that will be decoded using the given encoding and error handler. Otherwise, returns the result of object.__str__() (if defined) or repr(object). encoding defaults to sys.getdefaultencoding(). errors defaults to 'strict'. """ def capitalize(self): # real signature unknown; restored from __doc__ """ 首字母變大寫 name = "nick is good, Today is nice day." a = name.capitalize() print(a) """ S.capitalize() -> str Return a capitalized version of S, i.e. make the first character have upper case and the rest lower case. """ return "" def casefold(self): # real signature unknown; restored from __doc__ """ 首字母變小寫 name = "Nick is good, Today is nice day. a =name.casefold() print(a) """ S.casefold() -> str Return a version of S suitable for caseless comparisons. """ return "" def center(self, width, fillchar=None): # real signature unknown; restored from __doc__ """ 內容居中,width:總長度;fillchar:空白處填充內容,默認無。 name = "Nick is good, Today is nice day. a = name.center(60,'$') print(a) """ S.center(width[, fillchar]) -> str 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): # real signature unknown; restored from __doc__ """ 子序列個數,0到26中n出現了幾次。 name = "nck is good, Today is nice day. a = name.count("n",0,26) print(a) """ 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 0 def encode(self, encoding='utf-8', errors='strict'): # real signature unknown; restored from __doc__ """ """ 編碼,針對unicode. temp = "燒餅 temp.encode("unicode") """ S.encode(encoding='utf-8', errors='strict') -> bytes Encode S using the codec registered for encoding. Default encoding is 'utf-8'. 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 can handle UnicodeEncodeErrors. """ return b"" def endswith(self, suffix, start=None, end=None): # real signature unknown; restored from __doc__ """ """ 是否以XX結束,0到4是否以k結尾 name = "nck is good, Today is nice day. a = name.endswith("k",0,4) print(a) """ 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 False def expandtabs(self, tabsize=8): # real signature unknown; restored from __doc__ """ """ 將tab轉換成空格,默認一個tab轉換成8個空格 a = n.expandtabs() b = n.expandtabs(16) print(a) print(b) """ S.expandtabs(tabsize=8) -> str 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): # real signature unknown; restored from __doc__ """ """ 尋找子序列位置,如果沒找到,返回 -1。 name = "nck is good, Today is nice day. " a = name.find("nickk") print(a) """ 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 0 def format(self, *args, **kwargs): # known special case of str.format """ """ 字符串格式化,動態參數 name = "nck is good, Today is nice day. " a = name.format() print(a) """ S.format(*args, **kwargs) -> str Return a formatted version of S, using substitutions from args and kwargs. The substitutions are identified by braces ('{' and '}'). """ pass def format_map(self, mapping): # real signature unknown; restored from __doc__ """ """ dict = {'Foo': 54.23345} fmt = "Foo = {Foo:.3f}" result = fmt.format_map(dict) print(result) #Foo = 54.233 """ S.format_map(mapping) -> str Return a formatted version of S, using substitutions from mapping. The substitutions are identified by braces ('{' and '}'). """ return "" def index(self, sub, start=None, end=None): # real signature unknown; restored from __doc__ """ """ #子序列位置,如果沒有找到就報錯 name = "nck is good, Today is nice day. " a = name.index("nick") print(a) """ S.index(sub[, start[, end]]) -> int Like S.find() but raise ValueError when the substring is not found. """ return 0 def isalnum(self): # real signature unknown; restored from __doc__ """ """ 是否是字母和數字 name = "nck is good, Today is nice day. " a = name.isalnum() print(a) """ S.isalnum() -> bool Return True if all characters in S are alphanumeric and there is at least one character in S, False otherwise. """ return False def isalpha(self): # real signature unknown; restored from __doc__ """ """ 是否是字母 name = "nck is good, Today is nice day. " a = name.isalpha() print(a) """ S.isalpha() -> bool Return True if all characters in S are alphabetic and there is at least one character in S, False otherwise. """ return False def isdecimal(self): # real signature unknown; restored from __doc__ """ 檢查字符串是否只包含十進制字符。這種方法只存在於unicode對象。 """ S.isdecimal() -> bool Return True if there are only decimal characters in S, False otherwise. """ return False def isdigit(self): # real signature unknown; restored from __doc__ """ """ 是否是數字 name = "nck is good, Today is nice day. " a = name.isdigit() print(a) """ S.isdigit() -> bool Return True if all characters in S are digits and there is at least one character in S, False otherwise. """ return False def isidentifier(self): # real signature unknown; restored from __doc__ """ """ 判斷字符串是否可為合法的標識符 """ S.isidentifier() -> bool Return True if S is a valid identifier according to the language definition. Use keyword.iskeyword() to test for reserved identifiers such as "def" and "class". """ return False def islower(self): # real signature unknown; restored from __doc__ """ """ 是否小寫 name = "nck is good, Today is nice day. " a = name.islower() print(a) """ S.islower() -> bool Return True if all cased characters in S are lowercase and there is at least one cased character in S, False otherwise. """ return False def isnumeric(self): # real signature unknown; restored from __doc__ """ """ 檢查是否只有數字字符組成的字符串 name = "111111111111111” a = name.isnumeric() print(a) """ S.isnumeric() -> bool Return True if there are only numeric characters in S, False otherwise. """ return False def isprintable(self): # real signature unknown; restored from __doc__ """ """ 判斷字符串中所有字符是否都屬於可見字符 name = "nck is good, Today is nice day. " a = name.isprintable() print(a) """ S.isprintable() -> bool Return True if all characters in S are considered printable in repr() or S is empty, False otherwise. """ return False def isspace(self): # real signature unknown; restored from __doc__ """ """ 字符串是否只由空格組成 name = " " a = name.isspace() print(a) """ S.isspace() -> bool Return True if all characters in S are whitespace and there is at least one character in S, False otherwise. """ return False def istitle(self): # real signature unknown; restored from __doc__ """ """ 檢測字符串中所有的單詞拼寫首字母是否為大寫,且其他字母為小寫 name = "Nick, Today." a = name.istitle() print(a) """ """ S.istitle() -> bool Return True if S is a titlecased string and there is at least one character in S, i.e. upper- and titlecase characters may only follow uncased characters and lowercase characters only cased ones. Return False otherwise. """ return False def isupper(self): # real signature unknown; restored from __doc__ """ """ 檢測字符串中所有的字母是否都為大寫 name = "NICK" a = name.isupper() print(a) """ S.isupper() -> bool Return True if all cased characters in S are uppercase and there is at least one cased character in S, False otherwise. """ return False def join(self, iterable): # real signature unknown; restored from __doc__ """ """ 連接兩個字符串 li = ["nick","serven"] a = "".join(li) b = "_".join(li) print(a) print(b) """ S.join(iterable) -> str 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): # real signature unknown; restored from __doc__ """ """ 向左對齊,右側填充 name = "nck is good, Today is nice day. " a = name.ljust(66) print(a) """ S.ljust(width[, fillchar]) -> str Return S left-justified in a Unicode string of length width. Padding is done using the specified fill character (default is a space). """ return "" def lower(self): # real signature unknown; restored from __doc__ """ """ 容左對齊,右側填充 name = "NiNi" a = name.lower() print(a) """ S.lower() -> str Return a copy of the string S converted to lowercase. """ return "" def lstrip(self, chars=None): # real signature unknown; restored from __doc__ """ """ 移除左側空白 """ S.lstrip([chars]) -> str Return a copy of the string S with leading whitespace removed. If chars is given and not None, remove characters in chars instead. """ return "" def maketrans(self, *args, **kwargs): # real signature unknown """ """ 用於創建字符映射的轉換表,對於接受兩個參數的最簡單的調用方式,第一個參數是字符串,表示需要轉換的字符,第二個參數也是字符串表示轉換的目標。 from string import maketrans intab = "aeiou" outtab = "12345" trantab = maketrans(intab, outtab) str = "this is string example....wow!!!"; print str.translate(trantab); """ Return a translation table usable for str.translate(). If there is only one argument, it must be a dictionary mapping Unicode ordinals (integers) or characters to Unicode ordinals, strings or None. Character keys will be then converted to ordinals. If there are two arguments, they must be strings of equal length, and in the resulting dictionary, each character in x will be mapped to the character at the same position in y. If there is a third argument, it must be a string, whose characters will be mapped to None in the result. """ pass def partition(self, sep): # real signature unknown; restored from __doc__ """ """ 分割,前,中,后三部分 name = "Nick is good, Today is nice day." a = name.partition("good") print(a) """ 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 not found, return S and two empty strings. """ pass def replace(self, old, new, count=None): # real signature unknown; restored from __doc__ """ """ 替換 name = "Nick is good, Today is nice day." a = name.replace("good","man") print(a) """ S.replace(old, new[, count]) -> str Return a copy of S with all occurrences of substring old replaced by new. If the optional argument count is given, only the first count occurrences are replaced. """ return "" def rfind(self, sub, start=None, end=None): # real signature unknown; restored from __doc__ """ """ 返回字符串最后一次出現的位置,如果沒有匹配項則返回-1 """ 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): # real signature unknown; restored from __doc__ """ """ 返回子字符串 str 在字符串中最后出現的位置,如果沒有匹配的字符串會報異常 """ 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): # real signature unknown; restored from __doc__ """ """ 返回一個原字符串右對齊,並使用空格填充至長度 width 的新字符串。如果指定的長度小於字符串的長度則返回原字符串 str = "this is string example....wow!!!" print(str.rjust(50, '$')) """ S.rjust(width[, fillchar]) -> str Return S right-justified in a string of length width. Padding is done using the specified fill character (default is a space). """ return "" def rpartition(self, sep): # real signature unknown; restored from __doc__ """ """ 根據指定的分隔符將字符串進行分割 """ S.rpartition(sep) -> (head, sep, tail) Search for the separator sep in S, starting at the end of S, and return the 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=-1): # real signature unknown; restored from __doc__ """ """ 指定分隔符對字符串進行切片 name = "Nick is good, Today is nice day." a = name.rsplit("is") print(a) """ S.rsplit(sep=None, maxsplit=-1) -> list of strings Return a list of the words in 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, any whitespace string is a separator. """ return [] def rstrip(self, chars=None): # real signature unknown; restored from __doc__ """ """ 刪除 string 字符串末尾的指定字符(默認為空格) """ S.rstrip([chars]) -> str Return a copy of the string S with trailing whitespace removed. If chars is given and not None, remove characters in chars instead. """ return "" def split(self, sep=None, maxsplit=-1): # real signature unknown; restored from __doc__ """ """ 通過指定分隔符對字符串進行切片 str = "Line1-abcdef \nLine2-abc \nLine4-abcd"; print str.split( ); print str.split(' ', 1 ); """ S.split(sep=None, maxsplit=-1) -> list of strings Return a list of the words in 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 removed from the result. """ return [] def splitlines(self, keepends=None): # real signature unknown; restored from __doc__ """ """ 按照行分隔,返回一個包含各行作為元素的列表 """ S.splitlines([keepends]) -> 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 keepends is given and true. """ return [] def startswith(self, prefix, start=None, end=None): # real signature unknown; restored from __doc__ """ """ 檢查字符串是否是以指定子字符串開頭,如果是則返回 True,否則返回 False """ 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): # real signature unknown; restored from __doc__ """ """ 用於移除字符串頭尾指定的字符(默認為空格). """ S.strip([chars]) -> str 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. """ return "" def swapcase(self): # real signature unknown; restored from __doc__ """ """ 用於對字符串的大小寫字母進行轉換 """ S.swapcase() -> str Return a copy of S with uppercase characters converted to lowercase and vice versa. """ return "" def title(self): # real signature unknown; restored from __doc__ """ S.title() -> str Return a titlecased version of S, i.e. words start with title case characters, all remaining cased characters have lower case. """ return "" def translate(self, table): # real signature unknown; restored from __doc__ """ S.translate(table) -> str Return a copy of the string S in which each character has been mapped through the given translation table. The table must implement lookup/indexing via __getitem__, for instance a dictionary or list, mapping Unicode ordinals to Unicode ordinals, strings, or None. If this operation raises LookupError, the character is left untouched. Characters mapped to None are deleted. """ return "" def upper(self): # real signature unknown; restored from __doc__ """ """ 將字符串中的小寫字母轉為大寫字母 """ S.upper() -> str Return a copy of S converted to uppercase. """ return "" def zfill(self, width): # real signature unknown; restored from __doc__ """ """ 返回指定長度的字符串,原字符串右對齊,前面填充0 """ S.zfill(width) -> str 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 __add__(self, *args, **kwargs): # real signature unknown """ Return self+value. """ pass def __contains__(self, *args, **kwargs): # real signature unknown """ Return key in self. """ pass def __eq__(self, *args, **kwargs): # real signature unknown """ Return self==value. """ pass def __format__(self, format_spec): # real signature unknown; restored from __doc__ """ S.__format__(format_spec) -> str Return a formatted version of S as described by format_spec. """ return "" def __getattribute__(self, *args, **kwargs): # real signature unknown """ Return getattr(self, name). """ pass def __getitem__(self, *args, **kwargs): # real signature unknown """ Return self[key]. """ pass def __getnewargs__(self, *args, **kwargs): # real signature unknown pass def __ge__(self, *args, **kwargs): # real signature unknown """ Return self>=value. """ pass def __gt__(self, *args, **kwargs): # real signature unknown """ Return self>value. """ pass def __hash__(self, *args, **kwargs): # real signature unknown """ Return hash(self). """ pass def __init__(self, value='', encoding=None, errors='strict'): # known special case of str.__init__ """ str(object='') -> str str(bytes_or_buffer[, encoding[, errors]]) -> str Create a new string object from the given object. If encoding or errors is specified, then the object must expose a data buffer that will be decoded using the given encoding and error handler. Otherwise, returns the result of object.__str__() (if defined) or repr(object). encoding defaults to sys.getdefaultencoding(). errors defaults to 'strict'. # (copied from class doc) """ pass def __iter__(self, *args, **kwargs): # real signature unknown """ Implement iter(self). """ pass def __len__(self, *args, **kwargs): # real signature unknown """ Return len(self). """ pass def __le__(self, *args, **kwargs): # real signature unknown """ Return self<=value. """ pass def __lt__(self, *args, **kwargs): # real signature unknown """ Return self<value. """ pass def __mod__(self, *args, **kwargs): # real signature unknown """ Return self%value. """ pass def __mul__(self, *args, **kwargs): # real signature unknown """ Return self*value.n """ pass @staticmethod # known case of __new__ def __new__(*args, **kwargs): # real signature unknown """ Create and return a new object. See help(type) for accurate signature. """ pass def __ne__(self, *args, **kwargs): # real signature unknown """ Return self!=value. """ pass def __repr__(self, *args, **kwargs): # real signature unknown """ Return repr(self). """ pass def __rmod__(self, *args, **kwargs): # real signature unknown """ Return value%self. """ pass def __rmul__(self, *args, **kwargs): # real signature unknown """ Return self*value. """ pass def __sizeof__(self): # real signature unknown; restored from __doc__ """ S.__sizeof__() -> size of S in memory, in bytes """ pass def __str__(self, *args, **kwargs): # real signature unknown """ Return str(self). """ pass
4、列表
list = ['Google', 'baidu', 'taobao']
#在列表末尾添加新的對象 list = ['Google', 'baidu', 'T'] list.append('taobao') print(list) #將指定對象插入列表 list = ['Google', 'baidu', 'T','baidu'] list.insert(1,"Nick") print(list) #在列表末尾追加另一個序列中的多個值 list = ['Google', 'baidu', 'T','baidu'] list2 = ['nick','baidu'] list.extend(list2) print(list) #統計某個元素在列表中出現的次數 list = ['Google', 'baidu', 'T','baidu'] a = list.count('baidu') print(a) #從列表中找出某個值第一個匹配項的索引位置 list = ['Google', 'baidu', 'T','baidu'] a = list.index('baidu') print(a) #移除列表中的一個元素(默認最后一個元素) list = ['Google', 'baidu', 'T','baidu'] list.pop() print(list) #移除列表中某個值的第一個匹配項 list = ['Google', 'baidu', 'T','baidu'] list.remove('baidu') print(list) #清空列表 list = ['Google', 'baidu', 'T'] list.clear() print(list) #刪除指定索引位置 list = ['Google', 'baidu', 'T','baidu'] del list[2] print(list) list = ['Google', 'baidu', 'T','baidu'] del list[1:3] -->顧頭不顧尾 print(list) #復制列表 list = ['Google', 'baidu', 'T'] list2 = list.copy() print(list2) #對原列表進行排序 list = ['Google', 'baidu', 'T','baidu'] list.sort() print(list) #反向列表中元素 list = ['Google', 'baidu', 'T','baidu'] list.reverse() print(list)

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__ """ 用於在列表末尾添加新的對象 list = ['Google', 'baidu', 'T'] list.append('taobao') print(list) """ """ L.append(object) -> None -- append object to end """ pass def clear(self): # real signature unknown; restored from __doc__ """ 用於清空列表 list = ['Google', 'baidu', 'T'] list.clear() print(list) """ """ L.clear() -> None -- remove all items from L """ pass def copy(self): # real signature unknown; restored from __doc__ """ 用於復制列表 list = ['Google', 'baidu', 'T'] list2 = list.copy() print(list2) """ """ L.copy() -> list -- a shallow copy of L """ return [] def count(self, value): # real signature unknown; restored from __doc__ """ 統計某個元素在列表中出現的次數 list = ['Google', 'baidu', 'T','baidu'] a = list.count('baidu') print(a) """ """ L.count(value) -> integer -- return number of occurrences of value """ return 0 def extend(self, iterable): # real signature unknown; restored from __doc__ """ 在列表末尾一次性追加另一個序列中的多個值 list = ['Google', 'baidu', 'T','baidu'] list2 = ['nick','baidu'] list.extend(list2) print(list) """ """ L.extend(iterable) -> None -- extend list by appending elements from the iterable """ pass def index(self, value, start=None, stop=None): # real signature unknown; restored from __doc__ """ """ 用於從列表中找出某個值第一個匹配項的索引位置 list = ['Google', 'baidu', 'T','baidu'] a = list.index('baidu') print(a) """ L.index(value, [start, [stop]]) -> integer -- return first index of value. Raises ValueError if the value is not present. """ return 0 def insert(self, index, p_object): # real signature unknown; restored from __doc__ """ 用於將指定對象插入列表 list = ['Google', 'baidu', 'T','baidu'] list.insert(1,"Nick") print(list) """ """ L.insert(index, object) -- insert object before index """ pass def pop(self, index=None): # real signature unknown; restored from __doc__ """ 移除列表中的一個元素(默認最后一個元素)。 list = ['Google', 'baidu', 'T','baidu'] list.pop() print(list) """ """ L.pop([index]) -> item -- remove and return item at index (default last). Raises IndexError if list is empty or index is out of range. """ pass def remove(self, value): # real signature unknown; restored from __doc__ """ 移除列表中某個值的第一個匹配項 list = ['Google', 'baidu', 'T','baidu'] list.remove('baidu') print(list) """ """ L.remove(value) -> None -- remove first occurrence of value. Raises ValueError if the value is not present. """ pass def reverse(self): # real signature unknown; restored from __doc__ """ 用於反向列表中元素 list = ['Google', 'baidu', 'T','baidu'] list.reverse() print(list) """ """ L.reverse() -- reverse *IN PLACE* """ pass def sort(self, key=None, reverse=False): # real signature unknown; restored from __doc__ """ 用於對原列表進行排序 list = ['Google', 'baidu', 'T','baidu'] list.sort() print(list) """ """ L.sort(key=None, reverse=False) -> None -- stable sort *IN PLACE* """ pass def __add__(self, *args, **kwargs): # real signature unknown """ Return self+value. """ pass def __contains__(self, *args, **kwargs): # real signature unknown """ Return key in self. """ pass def __delitem__(self, *args, **kwargs): # real signature unknown """ Delete self[key]. """ pass def __eq__(self, *args, **kwargs): # real signature unknown """ Return self==value. """ pass def __getattribute__(self, *args, **kwargs): # real signature unknown """ Return getattr(self, name). """ pass def __getitem__(self, y): # real signature unknown; restored from __doc__ """ x.__getitem__(y) <==> x[y] """ pass def __ge__(self, *args, **kwargs): # real signature unknown """ Return self>=value. """ pass def __gt__(self, *args, **kwargs): # real signature unknown """ Return self>value. """ pass def __iadd__(self, *args, **kwargs): # real signature unknown """ Implement self+=value. """ pass def __imul__(self, *args, **kwargs): # real signature unknown """ Implement self*=value. """ pass def __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) """ pass def __iter__(self, *args, **kwargs): # real signature unknown """ Implement iter(self). """ pass def __len__(self, *args, **kwargs): # real signature unknown """ Return len(self). """ pass def __le__(self, *args, **kwargs): # real signature unknown """ Return self<=value. """ pass def __lt__(self, *args, **kwargs): # real signature unknown """ Return self<value. """ pass def __mul__(self, *args, **kwargs): # real signature unknown """ Return self*value.n """ pass @staticmethod # known case of __new__ def __new__(*args, **kwargs): # real signature unknown """ Create and return a new object. See help(type) for accurate signature. """ pass def __ne__(self, *args, **kwargs): # real signature unknown """ Return self!=value. """ pass def __repr__(self, *args, **kwargs): # real signature unknown """ Return repr(self). """ pass def __reversed__(self): # real signature unknown; restored from __doc__ """ L.__reversed__() -- return a reverse iterator over the list """ pass def __rmul__(self, *args, **kwargs): # real signature unknown """ Return self*value. """ pass def __setitem__(self, *args, **kwargs): # real signature unknown """ Set self[key] to value. """ pass def __sizeof__(self): # real signature unknown; restored from __doc__ """ L.__sizeof__() -- size of L in memory, in bytes """ pass __hash__ = None
5、元組(不可修改)
name = ('nick','jenney')
#索引 name = ('nick','jenney') a = name[0] print(a) #獲取指定元素的索引位置 name = ('nick','jenney') a = name.index('nick') print(a) #切片 name = ('nick','jenney') a = name[0:1] print(a) #計算元素出現的個數 name = ('nick','jenney') a = name.count('nick') print(a) #長度 name = ('nick','jenney') a = len(name) print(a) #for循環 name = ('nick','jenney') for i in name: print(i)

class 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__ """ 計算元素出現的個數 name = ('nick','jenney') a = name.count('nick') print(a) """ """ T.count(value) -> integer -- return number of occurrences of value """ return 0 def index(self, value, start=None, stop=None): # real signature unknown; restored from __doc__ """ 獲取指定元素的索引位置 name = ('nick','jenney') a = name.index('nick') print(a) """ """ T.index(value, [start, [stop]]) -> integer -- return first index of value. Raises ValueError if the value is not present. """ return 0 def __add__(self, *args, **kwargs): # real signature unknown """ Return self+value. """ pass def __contains__(self, *args, **kwargs): # real signature unknown """ Return key in self. """ pass def __eq__(self, *args, **kwargs): # real signature unknown """ Return self==value. """ pass def __getattribute__(self, *args, **kwargs): # real signature unknown """ Return getattr(self, name). """ pass def __getitem__(self, *args, **kwargs): # real signature unknown """ Return self[key]. """ pass def __getnewargs__(self, *args, **kwargs): # real signature unknown pass def __ge__(self, *args, **kwargs): # real signature unknown """ Return self>=value. """ pass def __gt__(self, *args, **kwargs): # real signature unknown """ Return self>value. """ pass def __hash__(self, *args, **kwargs): # real signature unknown """ Return hash(self). """ pass def __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) """ pass def __iter__(self, *args, **kwargs): # real signature unknown """ Implement iter(self). """ pass def __len__(self, *args, **kwargs): # real signature unknown """ Return len(self). """ pass def __le__(self, *args, **kwargs): # real signature unknown """ Return self<=value. """ pass def __lt__(self, *args, **kwargs): # real signature unknown """ Return self<value. """ pass def __mul__(self, *args, **kwargs): # real signature unknown """ Return self*value.n """ pass @staticmethod # known case of __new__ def __new__(*args, **kwargs): # real signature unknown """ Create and return a new object. See help(type) for accurate signature. """ pass def __ne__(self, *args, **kwargs): # real signature unknown """ Return self!=value. """ pass def __repr__(self, *args, **kwargs): # real signature unknown """ Return repr(self). """ pass def __rmul__(self, *args, **kwargs): # real signature unknown """ Return self*value. """ pass
6、字典(無序)
user_info = {
"name":"nick",
"age":18,
"job":"pythoner"
}
user_info = { "name":"nick", "age":18, "job":"pythoner" } #根據key獲取值 a = user_info.get("age") print(a) a = user_info.get("Age",19") print(a) #所有的key 列表 a = user_info.keys() print(a) #所有的值,values a = user_info.values() print(a) #所有項的列表形式 a = user_info.items() print(a) #獲取並在字典中移除 user_info.pop('age') print(user_info) #隨機並在字典中移除 user_info.popitem() user_info.popitem() print(user_info) #清除內容 a = user_info.clear() print(a) #淺拷貝 a = user_info.copy() print(a) #如果key不存在,則創建,如果存在,則返回已存在的值且不修改 a = user_info.setdefault("age") print(a) user_info.setdefault("cool") print(user_info) #從序列鍵和值設置為value來創建一個新的字典 a = dict.fromkeys(user_info) print(("new dict: %s") % str(a)) #更新(兩個字典) user_info = { "name":"nick", "age":18, "job":"pythoner" } user_info2 = { "wage":800000000, "drem":"The knife girl" } user_info.update(user_info2) print(user_info)

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__ """ 清除內容 user_info = { "name":"nick", "age":18, "job":"pythoner" a = user_info.clear() print(a) """ """ D.clear() -> None. Remove all items from D. """ pass def copy(self): # real signature unknown; restored from __doc__ """ 淺拷貝 user_info = { "name":"nick", "age":18, "job":"pythoner" } a = user_info.copy() print(a) """ """ D.copy() -> a shallow copy of D """ pass @staticmethod # known case def fromkeys(*args, **kwargs): # real signature unknown """ 從序列鍵和值設置為value來創建一個新的字典 user_info = { "name":"nick", "age":18, "job":"pythoner" } a = dict.fromkeys(user_info) print(("new dict: %s") % str(a)) """ """ Returns a new dict with keys from iterable and values equal to value. """ pass def get(self, k, d=None): # real signature unknown; restored from __doc__ """ 根據key獲取值,d是默認值 user_info = { "name":"nick", "age":18, "job":"pythoner" } a = user_info.get("age") print(a) """ """ D.get(k[,d]) -> D[k] if k in D, else d. d defaults to None. """ pass def items(self): # real signature unknown; restored from __doc__ """ 所有項的列表形式 user_info = { "name":"nick", "age":18, "job":"pythoner" } a = user_info.items() print(a) """ """ D.items() -> a set-like object providing a view on D's items """ pass def keys(self): # real signature unknown; restored from __doc__ """ 所有的key 列表 user_info = { "name":"nick", "age":18, "job":"pythoner" } a = user_info.keys() print(a) """ """ D.keys() -> a set-like object providing a view on D's keys """ pass def pop(self, k, d=None): # real signature unknown; restored from __doc__ """ 獲取並在字典中移除 user_info = { "name":"nick", "age":18, "job":"pythoner" } user_info.pop('age') print(user_info) """ """ 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 """ pass def popitem(self): # real signature unknown; restored from __doc__ """ 隨機並在字典中移除 user_info = { "name":"nick", "age":18, "job":"pythoner" } user_info.popitem() user_info.popitem() print(user_info) """ """ D.popitem() -> (k, v), remove and return some (key, value) pair as a 2-tuple; but raise KeyError if D is empty. """ pass def setdefault(self, k, d=None): # real signature unknown; restored from __doc__ """ 如果key不存在,則創建,如果存在,則返回已存在的值且不修改 user_info = { "name":"nick", "age":18, "job":"pythoner" } a = user_info.setdefault("age") print(a) user_info.setdefault("cool") print(user_info) """ """ D.setdefault(k[,d]) -> D.get(k,d), also set D[k]=d if k not in D """ pass def update(self, E=None, **F): # known special case of dict.update """ 更新(兩個字典) user_info = { "name":"nick", "age":18, "job":"pythoner" } user_info2 = { "wage":800000000, "drem":"The knife girl" } user_info.update(user_info2) print(user_info) """ """ D.update([E, ]**F) -> None. Update D from dict/iterable E and F. If E is present and has a .keys() method, then does: for k in E: D[k] = E[k] If E is present and lacks a .keys() method, then does: for k, v in E: D[k] = v In either case, this is followed by: for k in F: D[k] = F[k] """ pass def values(self): # real signature unknown; restored from __doc__ """ 所有的值,values user_info = { "name":"nick", "age":18, "job":"pythoner" } a = user_info.values() print(a) """ """ D.values() -> an object providing a view on D's values """ pass def __contains__(self, *args, **kwargs): # real signature unknown """ True if D has a key k, else False. """ pass def __delitem__(self, *args, **kwargs): # real signature unknown """ Delete self[key]. """ pass def __eq__(self, *args, **kwargs): # real signature unknown """ Return self==value. """ pass def __getattribute__(self, *args, **kwargs): # real signature unknown """ Return getattr(self, name). """ pass def __getitem__(self, y): # real signature unknown; restored from __doc__ """ x.__getitem__(y) <==> x[y] """ pass def __ge__(self, *args, **kwargs): # real signature unknown """ Return self>=value. """ pass def __gt__(self, *args, **kwargs): # real signature unknown """ Return self>value. """ pass def __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) """ pass def __iter__(self, *args, **kwargs): # real signature unknown """ Implement iter(self). """ pass def __len__(self, *args, **kwargs): # real signature unknown """ Return len(self). """ pass def __le__(self, *args, **kwargs): # real signature unknown """ Return self<=value. """ pass def __lt__(self, *args, **kwargs): # real signature unknown """ Return self<value. """ pass @staticmethod # known case of __new__ def __new__(*args, **kwargs): # real signature unknown """ Create and return a new object. See help(type) for accurate signature. """ pass def __ne__(self, *args, **kwargs): # real signature unknown """ Return self!=value. """ pass def __repr__(self, *args, **kwargs): # real signature unknown """ Return repr(self). """ pass def __setitem__(self, *args, **kwargs): # real signature unknown """ Set self[key] to value. """ pass def __sizeof__(self): # real signature unknown; restored from __doc__ """ D.__sizeof__() -> size of D in memory, in bytes """ pass __hash__ = None
7、set集合(無序、不重復)
s = set()
a = {'nick','jenny','suo'}
#添加元素 a = {'nick','jenny','suo'} a.add('The knife girl') print(a) #更新 a = {'nick','jenny','suo'} b = {'nick','jenny','The knife girl'} a.update(b) print(a) #a中存在。b中不存在,賦給新值 a = {'nick','jenny','suo'} b = {'nick','jenny','The knife girl'} set = a.difference(b) print(set) #a中存在。b中不存在,並更新a a = {'nick','jenny','suo'} b = {'nick','jenny','The knife girl'} a.difference_update(b) print(a) #交集,賦給新值 a = {'nick','jenny','suo'} b = {'nick','jenny','The knife girl'} set = a.intersection(b) print(set) #交集,更新a a = {'nick','jenny','suo'} b = {'nick','jenny','The knife girl'} a.intersection_update(b) print(a) #對稱交集 a = {'nick','jenny','suo'} b = {'nick','jenny','The knife girl'} set = a.symmetric_difference(b) print(set) #對稱交集,更新a a = {'nick','jenny','suo'} b = {'nick','jenny','The knife girl'} a.symmetric_difference_update(b) print(a) #並集,賦給新值 a = {'nick','jenny','suo'} b = {'nick','jenny','The knife girl'} set = a.union(b) print(set) #如果沒有交集,返回True,否則返回False a = {'nick','jenny','suo'} b = {'nick','jenny','The knife girl'} set = a.isdisjoint(b) print(set) #是否是子序列 a = {'nick','jenny','suo'} b = {'nick','jenny'} set = a.issubset(b) print(set) #是否是父序列 a = {'nick','jenny','suo'} b = {'nick','jenny'} set = a.issuperset(b) print(set) #移除指定元素,不存在不報錯 a = {'nick','jenny','suo'} a.discard('suo') print(a) #移除指定元素,不存在則報錯 a = {'nick','jenny','suo'} a.remove('suo') print(a) a.remove('suo') print(a) #移除隨機元素,並賦給新值 a = {'nick','jenny','suo'} set = a.pop() print(set) #清空 a = {'nick','jenny','suo'} a.clear() print(a)

class set(object): """ set() -> new empty set object set(iterable) -> new set object Build an unordered collection of unique elements. """ def add(self, *args, **kwargs): # real signature unknown """添加元素 >>> a = {'nick','jenny','suo'} >>> a.add('nick') >>> a {'suo', 'jenny', 'nick'} >>> a.add('love') >>> a {'suo', 'love', 'jenny', 'nick'} """ """ Add an element to a set. This has no effect if the element is already present. """ pass def clear(self, *args, **kwargs): # real signature unknown """清除內容 >>> a = {'nick','jenny','suo'} >>> a.clear() >>> a set() """ """ Remove all elements from this set. """ pass def copy(self, *args, **kwargs): # real signature unknown """淺拷貝 >>> a = {'nick','jenny','suo'} >>> b = a.copy() >>> b {'suo', 'jenny', 'nick'} """ """ Return a shallow copy of a set. """ pass def difference(self, *args, **kwargs): # real signature unknown """A中存在,B中不存在 >>> a = {'nick','jenny','suo'} >>> b = {'nick','jenny','The knife girl'} >>> a.difference(b) {'suo'} """ """ Return the difference of two or more sets as a new set. (i.e. all elements that are in this set but not the others.) """ pass def difference_update(self, *args, **kwargs): # real signature unknown """從當前集合中刪除和B中相同的元素 >>> a = {'nick','jenny','suo'} >>> b = {'nick','jenny','The knife girl'} >>> a.difference_update(b) >>> a {'suo'} """ """ Remove all elements of another set from this set. """ pass def discard(self, *args, **kwargs): # real signature unknown """移除指定元素,不存在不報錯 >>> a = {'nick','jenny','suo'} >>> a.discard('suo') >>> a {'jenny', 'nick'} >>> a.discard('The knife girl') >>> a {'jenny', 'nick'} """ """ Remove an element from a set if it is a member. If the element is not a member, do nothing. """ pass def intersection(self, *args, **kwargs): # real signature unknown """a與b的交集 >>> a = {'nick','jenny','suo'} >>> b = {'nick','jenny','The knife girl'} >>> a.intersection(b) {'jenny', 'nick'} """ """ Return the intersection of two sets as a new set. (i.e. all elements that are in both sets.) """ pass def intersection_update(self, *args, **kwargs): # real signature unknown """取交集並更更新到A中 >>> a = {'nick','jenny','suo'} >>> b = {'nick','jenny','The knife girl'} >>> a.intersection_update(b) >>> a {'jenny', 'nick'} """ """ Update a set with the intersection of itself and another. """ pass def isdisjoint(self, *args, **kwargs): # real signature unknown """如果沒有交集,返回True,否則返回False >>> a = {'nick','jenny','suo'} >>> b = {'nick','jenny','The knife girl'} >>> a.isdisjoint(b) False """ """ Return True if two sets have a null intersection. """ pass def issubset(self, *args, **kwargs): # real signature unknown """是否是子序列 >>> a = {'nick','jenny','suo'} >>> b = {'nick','jenny'} >>> b.issubset(a) True >>> a.issubset(b) False """ """ Report whether another set contains this set. """ pass def issuperset(self, *args, **kwargs): # real signature unknown """是否是父序列 >>> a = {'nick','jenny','suo'} >>> b = {'nick','jenny'} >>> a.issuperset(b) True >>> b.issuperset(a) False """ """ Report whether this set contains another set. """ pass def pop(self, *args, **kwargs): # real signature unknown """移除元素 >>> a = {'nick','jenny','suo'} >>> a.pop() 'suo' >>> a {'jenny', 'nick'} """ """ Remove and return an arbitrary set element. Raises KeyError if the set is empty. """ pass def remove(self, *args, **kwargs): # real signature unknown """移除指定元素,不存在報錯 >>> a = {'nick','jenny','suo'} >>> a.remove('nick') >>> a {'suo', 'jenny'} >>> a.remove('The knife girl') Traceback (most recent call last): File "<stdin>", line 1, in <module> KeyError: 'The knife girl' >>> """ """ Remove an element from a set; it must be a member. If the element is not a member, raise a KeyError. """ pass def symmetric_difference(self, *args, **kwargs): # real signature unknown """對稱交集 >>> a = {'nick','jenny','suo'} >>> b = {'nick','jenny','The knife girl'} >>> a.symmetric_difference(b) {'suo', 'The knife girl'} """ """ Return the symmetric difference of two sets as a new set. (i.e. all elements that are in exactly one of the sets.) """ pass def symmetric_difference_update(self, *args, **kwargs): # real signature unknown """對稱交集,並更新到a中 >>> a = {'nick','jenny','suo'} >>> b = {'nick','jenny','The knife girl'} >>> a.symmetric_difference_update(b) >>> a {'suo', 'The knife girl'} """ """ Update a set with the symmetric difference of itself and another. """ pass def union(self, *args, **kwargs): # real signature unknown """並集 >>> a = {'nick','jenny','suo'} >>> b = {'nick','jenny','The knife girl'} >>> a.union(b) {'suo', 'jenny', 'nick', 'The knife girl'} """ """ Return the union of sets as a new set. (i.e. all elements that are in either set.) """ pass def update(self, *args, **kwargs): # real signature unknown """更新 >>> a = {'nick','jenny','suo'} >>> b = {'nick','jenny','The knife girl'} >>> a.update(b) >>> a {'suo', 'jenny', 'nick', 'The knife girl'} >>> b {'jenny', 'nick', 'The knife girl'} """ """ Update a set with the union of itself and others. """ pass def __and__(self, *args, **kwargs): # real signature unknown """ Return self&value. """ pass def __contains__(self, y): # real signature unknown; restored from __doc__ """ x.__contains__(y) <==> y in x. """ pass def __eq__(self, *args, **kwargs): # real signature unknown """ Return self==value. """ pass def __getattribute__(self, *args, **kwargs): # real signature unknown """ Return getattr(self, name). """ pass def __ge__(self, *args, **kwargs): # real signature unknown """ Return self>=value. """ pass def __gt__(self, *args, **kwargs): # real signature unknown """ Return self>value. """ pass def __iand__(self, *args, **kwargs): # real signature unknown """ Return self&=value. """ pass def __init__(self, seq=()): # known special case of set.__init__ """ set() -> new empty set object set(iterable) -> new set object Build an unordered collection of unique elements. # (copied from class doc) """ pass def __ior__(self, *args, **kwargs): # real signature unknown """ Return self|=value. """ pass def __isub__(self, *args, **kwargs): # real signature unknown """ Return self-=value. """ pass def __iter__(self, *args, **kwargs): # real signature unknown """ Implement iter(self). """ pass def __ixor__(self, *args, **kwargs): # real signature unknown """ Return self^=value. """ pass def __len__(self, *args, **kwargs): # real signature unknown """ Return len(self). """ pass def __le__(self, *args, **kwargs): # real signature unknown """ Return self<=value. """ pass def __lt__(self, *args, **kwargs): # real signature unknown """ Return self<value. """ pass @staticmethod # known case of __new__ def __new__(*args, **kwargs): # real signature unknown """ Create and return a new object. See help(type) for accurate signature. """ pass def __ne__(self, *args, **kwargs): # real signature unknown """ Return self!=value. """ pass def __or__(self, *args, **kwargs): # real signature unknown """ Return self|value. """ pass def __rand__(self, *args, **kwargs): # real signature unknown """ Return value&self. """ pass def __reduce__(self, *args, **kwargs): # real signature unknown """ Return state information for pickling. """ pass def __repr__(self, *args, **kwargs): # real signature unknown """ Return repr(self). """ pass def __ror__(self, *args, **kwargs): # real signature unknown """ Return value|self. """ pass def __rsub__(self, *args, **kwargs): # real signature unknown """ Return value-self. """ pass def __rxor__(self, *args, **kwargs): # real signature unknown """ Return value^self. """ pass def __sizeof__(self): # real signature unknown; restored from __doc__ """ S.__sizeof__() -> size of S in memory, in bytes """ pass def __sub__(self, *args, **kwargs): # real signature unknown """ Return self-value. """ pass def __xor__(self, *args, **kwargs): # real signature unknown """ Return self^value. """ pass __hash__ = None
frozenset
是凍結的集合,它是不可變的,存在哈希值,好處是它可以作為字典的key,也可以作為其它集合的元素。缺點是一旦創建便不能更改,沒有add,remove方法。
>>> name = frozenset({"suoning"}) >>> name frozenset({'suoning'}) >>>
其他 |
1、for循環
用戶按照順序循環可迭代對象中的內容
name = ('nick','jenney') for i in name: print(i)
2、enumrate
為可迭代的對象添加序號
user_info = { "name":"nick", "age":18, "job":"pythoner" } for k,v in enumerate(user_info,1): print(k,v,user_info.get(v))
3、range和xrange
指定范圍,生成指定的數字
#python 2.7 版本 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] #python 3.5 版本 a = range(10) print(a) #結果:range(0, 10)
4、編碼與進制轉換
- utf-8與gbk編碼轉換
- 進制的轉換

- 把自己名字用進制表示出來
name = "索寧" a = bytes(name,encoding='utf-8') print(a) for i in a: print(i,bin(i)) #輸出結果(utf-8 三個字節表示一個漢字) b'\xe7\xb4\xa2\xe5\xae\x81' 231 0b11100111 180 0b10110100 162 0b10100010 229 0b11100101 174 0b10101110 129 0b10000001 b = bytes(name,encoding='gbk') print(b) for i in b: print(i,bin(i)) #輸出結果(gbk 兩個字節表示一個漢字) b'\xcb\xf7\xc4\xfe' 203 0b11001011 247 0b11110111 196 0b11000100 254 0b11111110