App下載

詞條

大約有 2,000 項(xiàng)符合查詢結(jié)果 ,庫內(nèi)數(shù)據(jù)總量為 78,250 項(xiàng)。(搜索耗時(shí):0.0037秒)

621.Python3 操作excel庫總結(jié)

有一部分小伙伴學(xué)習(xí)python的目的就是為了實(shí)現(xiàn)辦公自動(dòng)化的目的。通過使用更易學(xué)習(xí)的python替代excel中自帶的vbs腳本,來實(shí)現(xiàn)excel的批量操作(例如表格調(diào)整,批量處理數(shù)據(jù)等)。 接下來這篇文章小編帶你了解python中常用的幾種...

http://www.o2fo.com/python3/python3-excel.html

622.Python 練習(xí)實(shí)例59

Python 練習(xí)實(shí)例59 Python 100例 題目:畫圖,綜合例子。   程序分析:利用for循環(huán)控制100-999個(gè)數(shù),每個(gè)數(shù)分解出個(gè)位,十位,百位。。 程序源代碼: #!/usr/bin/python # -*- coding: UTF-8 -*- if __name__ == '__main__': from Tkinter import * can...

http://www.o2fo.com/python/python-exercise-example59.html

623.Python property() 函數(shù)

Python property() 函數(shù) Python 內(nèi)置函數(shù) 描述 Python property() 函數(shù)的作用是在新式類中返回屬性值。 語法 以下是 property() 方法的語法:class property([fget[, fset[, fdel[, doc]]]]) 參數(shù) fget:獲取屬性值的函數(shù) fset:設(shè)置屬性值的函數(shù) fdel:刪除屬...

http://www.o2fo.com/python/python-func-property.html

624.Mojo Python實(shí)現(xiàn)

讓我們首先直接根據(jù)定義在 Python 中實(shí)現(xiàn) matmul。%%python def matmul_python(C, A, B): for m in range(C.rows): for k in range(A.cols): for n in range(C.cols): C[m, n] += A[m, k] * B[k, n]讓我們使用 128 x 128 方陣對(duì)我們的實(shí)現(xiàn)進(jìn)行基準(zhǔn)測試并報(bào)告實(shí)現(xiàn)的 GFLops。如...

http://www.o2fo.com/mojochinese/mojo-python-implementation.html

625.TensorFlow如何在Python中操作張量圖

...================================== ============================= "" 操縱 python 中的張量圖的幫助器."" from __future__ import absolute_import from __future__ import division from __future__ import print_function # pylint: disable=unused-import from tensorflow.python.framework.graph_util_im...

http://www.o2fo.com/tensorflow_python/tensorflow_python-9w2j2eko.html

626.PostgreSQL PL/Python 函數(shù)

PL/Python 中的函數(shù)通過標(biāo)準(zhǔn)的CREATE FUNCTION語法聲明:CREATE FUNCTION funcname (argument-list) RETURNS return-type AS $$ # PL/Python 函數(shù)體 $$ LANGUAGE plpythonu; 函數(shù)體就是一個(gè) Python 腳本。當(dāng)函數(shù)被調(diào)用時(shí),它的參數(shù)被當(dāng)做列表args的元素傳遞,命名參...

http://www.o2fo.com/postgresql13_1/postgresql13_1-xzth3jp5.html

627.Python模塊

...讓復(fù)雜的程序簡單化,便于代碼管理,避免重復(fù)造輪子 - Python有很多內(nèi)置模塊與第三方庫,用的時(shí)候通過pip下載調(diào)用就可以了,非常方便。 ![](//atts.w3cschool.cn/attachments/image/20170717/1500271917642838.png) ### 2.練習(xí) 需要注意的是:建立函...

http://www.o2fo.com/zhangzexiang/zhangzexiang-a43p27qm.html

628.Python3 math.hypot() 方法 - 求歐幾里得范數(shù)

...指的是歐幾里得空間中兩點(diǎn)間"普通"(即直線)距離。在 Python 3.8 之前,此方法用于查找直角三角形的斜邊:sqrt(x*x + y*y)。從 Python 3.8 開始,此方法也用于計(jì)算歐幾里得范數(shù)。 對(duì)于 n 維情況,假定傳遞的坐標(biāo)類似于 (x1, x2, x3, ...,...

http://www.o2fo.com/python3/ref-math-hypot.html

629.Python List sort()方法

Python List sort()方法 描述 sort() 函數(shù)用于對(duì)原列表進(jìn)行排序,如果指定參數(shù),則使用比較函數(shù)指定的比較函數(shù)。 語法 sort()方法語法: list.sort([func]) 參數(shù) func -- 可選參數(shù), 如果指定了該參數(shù)會(huì)使用該參數(shù)的方法進(jìn)行排序。 返回...

http://www.o2fo.com/python/att-list-sort.html

630.Python List reverse()方法

Python List reverse()方法 描述 reverse() 函數(shù)用于反向列表中元素。 語法 reverse()方法語法: list.reverse() 參數(shù) NA。 返回值 該方法沒有返回值,但是會(huì)對(duì)列表的元素進(jìn)行反向排序。 實(shí)例 以下實(shí)例展示了 reverse()函數(shù)的使用方法: #!/usr...

http://www.o2fo.com/python/att-list-reverse.html

抱歉,暫時(shí)沒有相關(guān)的微課

w3cschool 建議您:

  • 檢查輸入的文字是否有誤

抱歉,暫時(shí)沒有相關(guān)的視頻課程

w3cschool 建議您:

  • 檢查輸入的文字是否有誤

抱歉,暫時(shí)沒有相關(guān)的教程

w3cschool 建議您:

  • 檢查輸入的文字是否有誤

621.Python3 操作excel庫總結(jié)

有一部分小伙伴學(xué)習(xí)python的目的就是為了實(shí)現(xiàn)辦公自動(dòng)化的目的。通過使用更易學(xué)習(xí)的python替代excel中自帶的vbs腳本,來實(shí)現(xiàn)excel的批量操作(例如表格調(diào)整,批量處理數(shù)據(jù)等)。 接下來這篇文章小編帶你了解python中常用的幾種...

http://www.o2fo.com/python3/python3-excel.html

622.Python 練習(xí)實(shí)例59

Python 練習(xí)實(shí)例59 Python 100例 題目:畫圖,綜合例子?! ?程序分析:利用for循環(huán)控制100-999個(gè)數(shù),每個(gè)數(shù)分解出個(gè)位,十位,百位。。 程序源代碼: #!/usr/bin/python # -*- coding: UTF-8 -*- if __name__ == '__main__': from Tkinter import * can...

http://www.o2fo.com/python/python-exercise-example59.html

623.Python property() 函數(shù)

Python property() 函數(shù) Python 內(nèi)置函數(shù) 描述 Python property() 函數(shù)的作用是在新式類中返回屬性值。 語法 以下是 property() 方法的語法:class property([fget[, fset[, fdel[, doc]]]]) 參數(shù) fget:獲取屬性值的函數(shù) fset:設(shè)置屬性值的函數(shù) fdel:刪除屬...

http://www.o2fo.com/python/python-func-property.html

624.Mojo Python實(shí)現(xiàn)

讓我們首先直接根據(jù)定義在 Python 中實(shí)現(xiàn) matmul。%%python def matmul_python(C, A, B): for m in range(C.rows): for k in range(A.cols): for n in range(C.cols): C[m, n] += A[m, k] * B[k, n]讓我們使用 128 x 128 方陣對(duì)我們的實(shí)現(xiàn)進(jìn)行基準(zhǔn)測試并報(bào)告實(shí)現(xiàn)的 GFLops。如...

http://www.o2fo.com/mojochinese/mojo-python-implementation.html

625.TensorFlow如何在Python中操作張量圖

...================================== ============================= "" 操縱 python 中的張量圖的幫助器."" from __future__ import absolute_import from __future__ import division from __future__ import print_function # pylint: disable=unused-import from tensorflow.python.framework.graph_util_im...

http://www.o2fo.com/tensorflow_python/tensorflow_python-9w2j2eko.html

626.PostgreSQL PL/Python 函數(shù)

PL/Python 中的函數(shù)通過標(biāo)準(zhǔn)的CREATE FUNCTION語法聲明:CREATE FUNCTION funcname (argument-list) RETURNS return-type AS $$ # PL/Python 函數(shù)體 $$ LANGUAGE plpythonu; 函數(shù)體就是一個(gè) Python 腳本。當(dāng)函數(shù)被調(diào)用時(shí),它的參數(shù)被當(dāng)做列表args的元素傳遞,命名參...

http://www.o2fo.com/postgresql13_1/postgresql13_1-xzth3jp5.html

627.Python模塊

...讓復(fù)雜的程序簡單化,便于代碼管理,避免重復(fù)造輪子 - Python有很多內(nèi)置模塊與第三方庫,用的時(shí)候通過pip下載調(diào)用就可以了,非常方便。 ![](//atts.w3cschool.cn/attachments/image/20170717/1500271917642838.png) ### 2.練習(xí) 需要注意的是:建立函...

http://www.o2fo.com/zhangzexiang/zhangzexiang-a43p27qm.html

628.Python3 math.hypot() 方法 - 求歐幾里得范數(shù)

...指的是歐幾里得空間中兩點(diǎn)間"普通"(即直線)距離。在 Python 3.8 之前,此方法用于查找直角三角形的斜邊:sqrt(x*x + y*y)。從 Python 3.8 開始,此方法也用于計(jì)算歐幾里得范數(shù)。 對(duì)于 n 維情況,假定傳遞的坐標(biāo)類似于 (x1, x2, x3, ...,...

http://www.o2fo.com/python3/ref-math-hypot.html

629.Python List sort()方法

Python List sort()方法 描述 sort() 函數(shù)用于對(duì)原列表進(jìn)行排序,如果指定參數(shù),則使用比較函數(shù)指定的比較函數(shù)。 語法 sort()方法語法: list.sort([func]) 參數(shù) func -- 可選參數(shù), 如果指定了該參數(shù)會(huì)使用該參數(shù)的方法進(jìn)行排序。 返回...

http://www.o2fo.com/python/att-list-sort.html

630.Python List reverse()方法

Python List reverse()方法 描述 reverse() 函數(shù)用于反向列表中元素。 語法 reverse()方法語法: list.reverse() 參數(shù) NA。 返回值 該方法沒有返回值,但是會(huì)對(duì)列表的元素進(jìn)行反向排序。 實(shí)例 以下實(shí)例展示了 reverse()函數(shù)的使用方法: #!/usr...

http://www.o2fo.com/python/att-list-reverse.html

抱歉,暫時(shí)沒有相關(guān)的文章

w3cschool 建議您:

  • 檢查輸入的文字是否有誤

熱門課程