摘要:數值類型整形長整形有長整形沒有長整形浮點型復數類型查看幫助可以使用什么方法,實現什么功能共軛虛部實部初學階段,避免使用開頭的內置功能字符串數據類型學生管理系統學生管理系統數據類型的轉換在中,所有的數據類型都可以作為內置函數,用來轉換數
數值類型 1.整形
Python 2.7.5 (default, Feb 11 2014, 07:46:25) >>> aint=3 >>> type(aint)2.長整形Python 3.6.4 (default, Aug 6 2018, 22:54:20) >>> aint=3 >>> type(aint)
python2#有長整形 >>> along=1728219876932764873264934692 >>> type(along)3.浮點型python3#沒有長整形 >>> along=1728219876932764873264934692 >>> type(along)
1.344,12000000=12e6=1.2e7=0.12e7,0.012=1.2e-2
python2 >>> afloat=12e3 >>> afloat 12000.0 >>> type(afloat)4.復數類型python3 >>> afloat=12e3 >>> type(afloat)
查看幫助:可以使用什么方法,實現什么功能?acomplex=3j+8
type(acomplex)
help(acomplex)dir(acomplex)
["__abs__", "__add__", "__class__", "__coerce__", "__delattr__", "__div__", "__divmod__", "__doc__", "__eq__", "__float__", "__floordiv__", "__format__", "__ge__", "__getattribute__", "__getnewargs__", "__gt__", "__hash__", "__init__", "__int__", "__le__", "__long__", "__lt__", "__mod__", "__mul__", "__ne__", "__neg__", "__new__", "__nonzero__", "__pos__", "__pow__", "__radd__", "__rdiv__", "__rdivmod__", "__reduce__", "__reduce_ex__", "__repr__", "__rfloordiv__", "__rmod__", "__rmul__", "__rpow__", "__rsub__", "__rtruediv__", "__setattr__", "__sizeof__", "__str__", "__sub__", "__subclasshook__", "__truediv__", "conjugate", "imag", "real"]
>>> acomplex.conjugate() #共軛 (8-3j) >>> acomplex.imag #虛部 3.0 >>> acomplex.real #實部 8.0
初學階段,避免使用"__"開頭的內置功能
>>> astring="hello" >>> type(astring)數據類型的轉換>>> dir(astring) ["__add__", "__class__", "__contains__", "__delattr__", "__doc__", "__eq__", "__format__", "__ge__", "__getattribute__", "__getitem__", "__getnewargs__", "__getslice__", "__gt__", "__hash__", "__init__", "__le__", "__len__", "__lt__", "__mod__", "__mul__", "__ne__", "__new__", "__reduce__", "__reduce_ex__", "__repr__", "__rmod__", "__rmul__", "__setattr__", "__sizeof__", "__str__", "__subclasshook__", "_formatter_field_name_split", "_formatter_parser", "capitalize", "center", "count", "decode", "encode", "endswith", "expandtabs", "find", "format", "index", "isalnum", "isalpha", "isdigit", "islower", "isspace", "istitle", "isupper", "join", "ljust", "lower", "lstrip", "partition", "replace", "rfind", "rindex", "rjust", "rpartition", "rsplit", "rstrip", "split", "splitlines", "startswith", "strip", "swapcase", "title", "translate", "upper", "zfill"] >>> help(astring.center) >>> astring.center(40,"*") "*****************hello******************" >>> print("學生管理系統".center(40,"*")) ***********學生管理系統***********
-在python中,所有的數據類型都可以作為內置函數,用來轉換數據類型:
>>> int(3.10) 3 >>> str(3) "3" >>> type(str(3))如何刪除內存中的變量>>> float(3) 3.0 >>> complex(2) (2+0j)
>>> afloat=2e12 >>> del afloat >>> afloat Traceback (most recent call last): File "布爾數據類型", line 1, in NameError: name "afloat" is not defined
bool:只有兩個值(True,Flase)
>>>a = 1 >>> bool(a) True >>> bool(0) False >>> name = "we" >>> bool(a) True運算符 1.算術運算符
+,-,,*,/,%,//
2.賦值運算符=,+=,-=,/=,%=,*=
3.關系運算符,>=,<,<=,!=,==4.邏輯運算符
邏輯與and
邏輯或or
邏輯非not
python2
>>> 5/2 2 >>> 100/300 0 >>> 5/2.0 2.5 >>> 100/300.0 0.3333333333333333 >>> from __future__ import division >>> 5/3 1.6666666666666667
python3
vim empty.py
#判斷輸入為空時,輸出"Error" value=input("請輸入:") if not value: print("Erros")
文章版權歸作者所有,未經允許請勿轉載,若此文章存在違規行為,您可以聯系管理員刪除。
轉載請注明本文地址:http://m.specialneedsforspecialkids.com/yun/42146.html
摘要:數據類型有數字,字符串,值,列表,元組,集合,字典可變與不可變可變與不可變的區別對這個數據類型進行增刪改差時,數據存儲地址不變,不會開辟新的空間可變不開辟新空間不可變會改變內存地址不可變數據類型數字,字符串,值,元組可變數據類型列表,集合, 數據類型 有:數字,字符串,bool值,列表,元組,集合,字典 可變與不可變 可變與不可變的區別:對這個數據類型進行增刪改差時,數據存儲地址不變,...
摘要:相等和變量在內存中的存儲位置,數據類型判斷數據類型和值判斷數據類型和值直接賦值,兩者滿足列表拷貝,另外開辟內存空間深拷貝與淺拷貝所有的數值類型布爾數字字符串都是不可變數據類型列表是可變數據類型列表里嵌套列表時淺拷貝是拷貝內置列表的存儲位置深 相等 is 和== 變量id:在內存中的存儲位置,id(a)value: ==type:數據類型==: 判斷數據類型和值is:判斷id,數據類型和...
摘要:函數的定義范例總結無參函數名快注釋函數體定義函數,并不會執行函數體里面的內容調用函數的過程函數里面嵌套函數調用外層函數時,內層函數不會執行變量參數定義函數時的變量,稱做形參,可以任意命名真實的數據信息,調用函數時傳遞的參數,稱為實參是形參是 函數的定義 范例 def print(self, *args, sep= , end=n, file=None): 總結 無參 def 函數名...
摘要:列表打了激素的數組可以存儲任意數據類型的集和,列表里面也是可以嵌套列表的。 python工具--pycharm 安裝pycharm 官網下載pycharm源碼包 解壓源碼包到指定位置, 超級用戶建議解壓到/opt目錄, 普通用戶建議解壓到當前用戶家目錄 進入解壓目錄/opt/pycharm-community-2017.1.4/, Install-Linux-tar.txt詳細介紹...
閱讀 1272·2021-09-23 11:51
閱讀 1391·2021-09-04 16:45
閱讀 632·2019-08-30 15:54
閱讀 2083·2019-08-30 15:52
閱讀 1602·2019-08-30 11:17
閱讀 3106·2019-08-29 13:59
閱讀 2020·2019-08-28 18:09
閱讀 387·2019-08-26 12:15