python help() 帮助文档 哪里不会查哪里

2024-05-26 16:08
文章标签 python 文档 不会 帮助 help

本文主要是介绍python help() 帮助文档 哪里不会查哪里,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

help

在python中遇到不会的方法怎么办,用help查一下用法。
用法help()放入函数名,不需要加括号。首先来个套娃,查询一下help函数的用法。

help(help)

class _Helper(builtins.object)
| Define the builtin ‘help’.
|
| This is a wrapper around pydoc.help that provides a helpful message
| when ‘help’ is typed at the Python interactive prompt.
|
| Calling help() at the Python prompt starts an interactive help session.
| Calling help(thing) prints help for the python object ‘thing’.

print

然后查询一下print()方法的用法。

help(print)

print(…)
print(value, …, sep=’ ‘, end=’\n’, file=sys.stdout, flush=False)
Prints the values to a stream, or to sys.stdout by default.
Optional keyword arguments:
file: a file-like object (stream); defaults to the current sys.stdout.
sep: string inserted between values, default a space.
end: string appended after the last value, default a newline.
flush: whether to forcibly flush the stream.

a = 1
b = [2,3,4]
c = "miao"
print(a, b, c)
print(a, b, c, sep=", ")
print(a, b, c, sep="\n")
print(a, end="--")
print(b, end="--")
print(c, end="--")

1 [2, 3, 4] miao
1, [2, 3, 4], miao
1
[2, 3, 4]
miao
1–[2, 3, 4]–miao–

sys

help('sys')

或者

import sys
help(sys)

也可以

import sys
help(sys.path)

查询某个具体方法

help(sys.path.append)

append(object, /) method of builtins.list instance
Append object to the end of the list.

基础数据类型

int型数据

number = 666
help(number)

bit_length(self, /)
| Number of bits necessary to represent self in binary.
|
| >>> bin(37)
| ‘0b100101’
| >>> (37).bit_length()
| 6

number = 666
print(bin(number))
print(number.bit_length())

0b1010011010
10
数组类型

array = [1,2,3]
help(array)   

数组的一些常用方法如下

append(self, object, /)
| Append object to the end of the list.
|
| clear(self, /)
| Remove all items from list.
|
| copy(self, /)
| Return a shallow copy of the list.
|
| count(self, value, /)
| Return number of occurrences of value.
|
| extend(self, iterable, /)
| Extend list by appending elements from the iterable.
|
| index(self, value, start=0, stop=9223372036854775807, /)
| Return first index of value.
|
| Raises ValueError if the value is not present.
|
| insert(self, index, object, /)
| Insert object before index.
|
| pop(self, index=-1, /)
| Remove and return item at index (default last).
|
| Raises IndexError if list is empty or index is out of range.
|
| remove(self, value, /)
| Remove first occurrence of value.
|
| Raises ValueError if the value is not present.
|
| reverse(self, /)
| Reverse IN PLACE.
|
| sort(self, /, *, key=None, reverse=False)
| Sort the list in ascending order and return None.

help(array.append)

append(object, /) method of builtins.list instance
Append object to the end of the list.

string类型数据

string="miao"
print(type(string))
help(string)

<class ‘str’>
No Python documentation found for ‘miao’.
Use help() to get the interactive help utility.
Use help(str) for help on the str class.

help(str)

str的常用方法如下

startswith(…)
| 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.
|

time

import time
help(time.time)

time(…)
time() -> floating point number
Return the current time in seconds since the Epoch.
Fractions of a second may be present if the system clock provides them.

format

help(format)

format(value, format_spec=’’, /)
Return value.format(format_spec)

format_spec defaults to the empty string.
See the Format Specification Mini-Language section of help('FORMATTING') for
details.

关于format详情可以参见print(help(‘FORMATTING’))。

help('FORMATTING')

Format String Syntax


The “str.format()” method and the “Formatter” class share the same
syntax for format strings (although in the case of “Formatter”,
subclasses can define their own format string syntax). The syntax is
related to that of formatted string literals, but there are
differences.
Format strings contain “replacement fields” surrounded by curly braces
“{}”. Anything that is not contained in braces is considered literal
text, which is copied unchanged to the output. If you need to include
a brace character in the literal text, it can be escaped by doubling:
“{{” and “}}”.

可以直接拉到例子部分。

Format examples
===============
This section contains examples of the “str.format()” syntax and
comparison with the old “%”-formatting.
In most of the cases the syntax is similar to the old “%”-formatting,
with the addition of the “{}” and with “:” used instead of “%”. For
example, “’%03.2f’” can be translated to “’{:03.2f}’”.
The new format syntax also supports new and different options, shown
in the following examples.

```python
print('{:.2f}'.format(3453.2398473))

3453.24

torch.ones

help(torch.ones)

ones(…)
ones(*size, *, out=None, dtype=None, layout=torch.strided, device=None, requires_grad=False) -> Tensor
Returns a tensor filled with the scalar value 1, with the shape defined
by the variable argument :attr:size.
Args:
size (int…): a sequence of integers defining the shape of the output tensor.
Can be a variable number of arguments or a collection like a list or tuple.
Keyword arguments:
out (Tensor, optional): the output tensor.
dtype (:class:torch.dtype, optional): the desired data type of returned tensor.
Default: if None, uses a global default (see :func:torch.set_default_tensor_type).
layout (:class:torch.layout, optional): the desired layout of returned Tensor.
Default: torch.strided.
device (:class:torch.device, optional): the desired device of returned tensor.
Default: if None, uses the current device for the default tensor type
(see :func:torch.set_default_tensor_type). :attr:device will be the CPU
for CPU tensor types and the current CUDA device for CUDA tensor types.
requires_grad (bool, optional): If autograd should record operations on the
returned tensor. Default: False.
Example::

torch.ones(2, 3)
tensor([[ 1., 1., 1.],
[ 1., 1., 1.]])

torch.ones(5)
tensor([ 1., 1., 1., 1., 1.])

np.rand.normal

features
print(help(features))

| size(…)
| size() -> torch.Size
|
| Returns the size of the :attr:self tensor. The returned value is a subclass of
| :class:tuple.
|
| Example::
|
| >>> torch.empty(3, 4, 5).size()
| torch.Size([3, 4, 5])

  • help is all you need.
    在这里插入图片描述

这篇关于python help() 帮助文档 哪里不会查哪里的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/1004947

相关文章

python: 多模块(.py)中全局变量的导入

文章目录 global关键字可变类型和不可变类型数据的内存地址单模块(单个py文件)的全局变量示例总结 多模块(多个py文件)的全局变量from x import x导入全局变量示例 import x导入全局变量示例 总结 global关键字 global 的作用范围是模块(.py)级别: 当你在一个模块(文件)中使用 global 声明变量时,这个变量只在该模块的全局命名空

活用c4d官方开发文档查询代码

当你问AI助手比如豆包,如何用python禁止掉xpresso标签时候,它会提示到 这时候要用到两个东西。https://developers.maxon.net/论坛搜索和开发文档 比如这里我就在官方找到正确的id描述 然后我就把参数标签换过来

【Python编程】Linux创建虚拟环境并配置与notebook相连接

1.创建 使用 venv 创建虚拟环境。例如,在当前目录下创建一个名为 myenv 的虚拟环境: python3 -m venv myenv 2.激活 激活虚拟环境使其成为当前终端会话的活动环境。运行: source myenv/bin/activate 3.与notebook连接 在虚拟环境中,使用 pip 安装 Jupyter 和 ipykernel: pip instal

【机器学习】高斯过程的基本概念和应用领域以及在python中的实例

引言 高斯过程(Gaussian Process,简称GP)是一种概率模型,用于描述一组随机变量的联合概率分布,其中任何一个有限维度的子集都具有高斯分布 文章目录 引言一、高斯过程1.1 基本定义1.1.1 随机过程1.1.2 高斯分布 1.2 高斯过程的特性1.2.1 联合高斯性1.2.2 均值函数1.2.3 协方差函数(或核函数) 1.3 核函数1.4 高斯过程回归(Gauss

【学习笔记】 陈强-机器学习-Python-Ch15 人工神经网络(1)sklearn

系列文章目录 监督学习:参数方法 【学习笔记】 陈强-机器学习-Python-Ch4 线性回归 【学习笔记】 陈强-机器学习-Python-Ch5 逻辑回归 【课后题练习】 陈强-机器学习-Python-Ch5 逻辑回归(SAheart.csv) 【学习笔记】 陈强-机器学习-Python-Ch6 多项逻辑回归 【学习笔记 及 课后题练习】 陈强-机器学习-Python-Ch7 判别分析 【学

计算机毕业设计 大学志愿填报系统 Java+SpringBoot+Vue 前后端分离 文档报告 代码讲解 安装调试

🍊作者:计算机编程-吉哥 🍊简介:专业从事JavaWeb程序开发,微信小程序开发,定制化项目、 源码、代码讲解、文档撰写、ppt制作。做自己喜欢的事,生活就是快乐的。 🍊心愿:点赞 👍 收藏 ⭐评论 📝 🍅 文末获取源码联系 👇🏻 精彩专栏推荐订阅 👇🏻 不然下次找不到哟~Java毕业设计项目~热门选题推荐《1000套》 目录 1.技术选型 2.开发工具 3.功能

nudepy,一个有趣的 Python 库!

更多资料获取 📚 个人网站:ipengtao.com 大家好,今天为大家分享一个有趣的 Python 库 - nudepy。 Github地址:https://github.com/hhatto/nude.py 在图像处理和计算机视觉应用中,检测图像中的不适当内容(例如裸露图像)是一个重要的任务。nudepy 是一个基于 Python 的库,专门用于检测图像中的不适当内容。该

pip-tools:打造可重复、可控的 Python 开发环境,解决依赖关系,让代码更稳定

在 Python 开发中,管理依赖关系是一项繁琐且容易出错的任务。手动更新依赖版本、处理冲突、确保一致性等等,都可能让开发者感到头疼。而 pip-tools 为开发者提供了一套稳定可靠的解决方案。 什么是 pip-tools? pip-tools 是一组命令行工具,旨在简化 Python 依赖关系的管理,确保项目环境的稳定性和可重复性。它主要包含两个核心工具:pip-compile 和 pip

HTML提交表单给python

python 代码 from flask import Flask, request, render_template, redirect, url_forapp = Flask(__name__)@app.route('/')def form():# 渲染表单页面return render_template('./index.html')@app.route('/submit_form',

PDF 软件如何帮助您编辑、转换和保护文件。

如何找到最好的 PDF 编辑器。 无论您是在为您的企业寻找更高效的 PDF 解决方案,还是尝试组织和编辑主文档,PDF 编辑器都可以在一个地方提供您需要的所有工具。市面上有很多 PDF 编辑器 — 在决定哪个最适合您时,请考虑这些因素。 1. 确定您的 PDF 文档软件需求。 不同的 PDF 文档软件程序可以具有不同的功能,因此在决定哪个是最适合您的 PDF 软件之前,请花点时间评估您的