词条

大约有 4,000 项符合查询结果 ,库内数据总量为 78,408 项。(搜索耗时:0.0117秒)

1991.Iter IO

...nstances of this object implement an interface compatible with thestandard Python file object. Streams are either read-only orwrite-only depending on how the object is created. If the first argument is an iterable a file like object is returned thatreturns the contents of the iterable. In case the i...

https://www.w3cschool.cn/werkzeug/p4iv9ozt.html

1992.Django4.0 测试工具-提供的测试用例类

一般的 Python 单元测试类都会扩展一个基类 ​unittest.TestCase​。Django 提供了这个基类的一些扩展。Django 单元测试类的层次结构你可以将一个普通的 ​unittest.TestCase​ 转换为任何一个子类:将你的测试基类从 ​unittest.TestCase​ 改...

https://www.w3cschool.cn/django4/django4-8vsh3m5a.html

1993.3.6 复数的数学运算

... cmath.exp(a) (-4.829809383269385-5.5920560936409816j) >>> 讨论 Python中大部分与数学相关的模块都能处理复数。比如如果你使用numpy,可以很容易的构造一个复数数组并在这个数组上执行各种操作: >>> import numpy as np >>> a =...

https://www.w3cschool.cn/youshq/l7mn1ozt.html

1994.Pillow ImageWin模块(仅限Windows)

...块包含在Windows上创建和显示图像的支持。 ImageWin可以与pythonwin和其他用户界面工具包一起使用,这些工具包提供对Windows设备上下文或窗口句柄的访问。例如,tkinter通过winfo_id方法使窗口句柄可用:from PIL import ImageWin dib = ImageWin....

https://www.w3cschool.cn/pillow_course/pillow_course-67mf3iq6.html

1995.PyTorch torch.nn 到底是什么?

...像组成(介于 0 到 9 之间)。 我们将使用 pathlib 处理路径(Python 3 标准库的一部分),并下载数据集。 我们只会在使用模块时才导入它们,因此您可以确切地看到正在使用模块的每个细节。from pathlib import Path import requests DATA_PATH = ...

https://www.w3cschool.cn/pytorch/pytorch-mrni3btn.html

1996.TensorFlow模块:tf.metrics

...cs定义在:tensorflow/tools/api/generator/api/metrics/__init__.py.用于Python API的导入.这个文件是计算机生成的!不要编辑.生成者:tensorflow/tools/api/generator/create_python_api.py脚本.功能accuracy(...):计算predictions与labels匹配的频率.auc(...):通过黎...

https://www.w3cschool.cn/tensorflow_python/tensorflow_python-ke8y2yhg.html

1997.Atom 基本的自定义

...中软换行,在ruby文件中将tab显示为两个空格的宽度,在python文件中显示为4个空格的宽度。下面是作用于语言的几种选项,这是它们的列表:editor.tabLength editor.softWrap editor.softWrapAtPreferredLineLength editor.preferredLineLength editor.scrollPastE...

https://www.w3cschool.cn/atomflightmanualzhcn/3bia1log.html

1998.httpx 介绍

HTTPX是Python 3的全功能HTTP客户端,它提供同步和异步API,并支持HTTP / 1.1和HTTP / 2。 为了方便对方法的理解,本篇教程全文代码基本都是采用python shell 环境进行调试!使用 pip 安装 HTTPX:pip install httpx现在,让我们开始吧:>>&g...

https://www.w3cschool.cn/httpx/httpx-intro.html

1999.Electron 测试

...clang-format并准备一个简短的教程。这个存储库中没有很多Python,但是它也受编码样式规则的约束。npm run lint-py会检查所有Python,并pylint以此来检查。单元测试如果你不使用构建工具,请确保您已配置电子的本地构建这个名字之一...

https://www.w3cschool.cn/electron_/electron_-7tak37lh.html

2000.Flask 扩展之WTF(表格)

...TForms库提供了一个简单的接口。使用Flask-WTF,我们可以在Python脚本中定义表单字段,并使用HTML模板进行渲染。还可以将验证应用于WTF字段。首先,需要pip安装Flask-WTF扩展:pip install flask-WTFflask-WTF包含一个Form类,该类必须用作用...

https://www.w3cschool.cn/rrhflask/rrhflask-vk3j32bv.html

抱歉,暂时没有相关的微课

w3cschool 建议您:

  • 检查输入的文字是否有误

抱歉,暂时没有相关的视频课程

w3cschool 建议您:

  • 检查输入的文字是否有误

抱歉,暂时没有相关的教程

w3cschool 建议您:

  • 检查输入的文字是否有误

1991.Iter IO

...nstances of this object implement an interface compatible with thestandard Python file object. Streams are either read-only orwrite-only depending on how the object is created. If the first argument is an iterable a file like object is returned thatreturns the contents of the iterable. In case the i...

https://www.w3cschool.cn/werkzeug/p4iv9ozt.html

1992.Django4.0 测试工具-提供的测试用例类

一般的 Python 单元测试类都会扩展一个基类 ​unittest.TestCase​。Django 提供了这个基类的一些扩展。Django 单元测试类的层次结构你可以将一个普通的 ​unittest.TestCase​ 转换为任何一个子类:将你的测试基类从 ​unittest.TestCase​ 改...

https://www.w3cschool.cn/django4/django4-8vsh3m5a.html

1993.3.6 复数的数学运算

... cmath.exp(a) (-4.829809383269385-5.5920560936409816j) >>> 讨论 Python中大部分与数学相关的模块都能处理复数。比如如果你使用numpy,可以很容易的构造一个复数数组并在这个数组上执行各种操作: >>> import numpy as np >>> a =...

https://www.w3cschool.cn/youshq/l7mn1ozt.html

1994.Pillow ImageWin模块(仅限Windows)

...块包含在Windows上创建和显示图像的支持。 ImageWin可以与pythonwin和其他用户界面工具包一起使用,这些工具包提供对Windows设备上下文或窗口句柄的访问。例如,tkinter通过winfo_id方法使窗口句柄可用:from PIL import ImageWin dib = ImageWin....

https://www.w3cschool.cn/pillow_course/pillow_course-67mf3iq6.html

1995.PyTorch torch.nn 到底是什么?

...像组成(介于 0 到 9 之间)。 我们将使用 pathlib 处理路径(Python 3 标准库的一部分),并下载数据集。 我们只会在使用模块时才导入它们,因此您可以确切地看到正在使用模块的每个细节。from pathlib import Path import requests DATA_PATH = ...

https://www.w3cschool.cn/pytorch/pytorch-mrni3btn.html

1996.TensorFlow模块:tf.metrics

...cs定义在:tensorflow/tools/api/generator/api/metrics/__init__.py.用于Python API的导入.这个文件是计算机生成的!不要编辑.生成者:tensorflow/tools/api/generator/create_python_api.py脚本.功能accuracy(...):计算predictions与labels匹配的频率.auc(...):通过黎...

https://www.w3cschool.cn/tensorflow_python/tensorflow_python-ke8y2yhg.html

1997.Atom 基本的自定义

...中软换行,在ruby文件中将tab显示为两个空格的宽度,在python文件中显示为4个空格的宽度。下面是作用于语言的几种选项,这是它们的列表:editor.tabLength editor.softWrap editor.softWrapAtPreferredLineLength editor.preferredLineLength editor.scrollPastE...

https://www.w3cschool.cn/atomflightmanualzhcn/3bia1log.html

1998.httpx 介绍

HTTPX是Python 3的全功能HTTP客户端,它提供同步和异步API,并支持HTTP / 1.1和HTTP / 2。 为了方便对方法的理解,本篇教程全文代码基本都是采用python shell 环境进行调试!使用 pip 安装 HTTPX:pip install httpx现在,让我们开始吧:>>&g...

https://www.w3cschool.cn/httpx/httpx-intro.html

1999.Electron 测试

...clang-format并准备一个简短的教程。这个存储库中没有很多Python,但是它也受编码样式规则的约束。npm run lint-py会检查所有Python,并pylint以此来检查。单元测试如果你不使用构建工具,请确保您已配置电子的本地构建这个名字之一...

https://www.w3cschool.cn/electron_/electron_-7tak37lh.html

2000.Flask 扩展之WTF(表格)

...TForms库提供了一个简单的接口。使用Flask-WTF,我们可以在Python脚本中定义表单字段,并使用HTML模板进行渲染。还可以将验证应用于WTF字段。首先,需要pip安装Flask-WTF扩展:pip install flask-WTFflask-WTF包含一个Form类,该类必须用作用...

https://www.w3cschool.cn/rrhflask/rrhflask-vk3j32bv.html
App下载
App下载

扫描二维码

下载编程狮App

关注有礼
微信公众号

扫码关注 领资料包

意见反馈
帮助中心
返回顶部