Boolean Operations — and, or, not
Operation Result
x or y if x is false, then y, else x
x and y if x is false, then x, else y
not x if x is false, then True, else False
Comparisons
Operation Meaning
< strictly less than
<= less than or equal
> strictly greater than
>= greater than or equal
== equal
!= not equal
is object identity
is not negated object identity
Numeric Types
Operation Result
x + y sum of x and y
x - y difference of x and y
x * y product of x and y
x / y quotient of x and y
x // y floored quotient of x and y
x % y remainder of x / y
-x x negated
+x x unchanged
abs(x) absolute value or magnitude of x
int(x) x converted to integer
float(x) x converted to floating point
complex(re, im) a complex number with real part re, imaginary part im. im defaults to zero.
c.conjugate() conjugate of the complex number c
divmod(x, y) the pair (x // y, x % y)
pow(x, y) x to the power y
x ** y x to the power y
Bit-string Operations on Integer Types
Operation Result
x | y bitwise or of x and y
x ^ y bitwise exclusive or of x and y
x & y bitwise and of x and y
x << n x shifted left by n bits
x >> n x shifted right by n bits
~x the bits of x inverted
Sequence Types — str, bytes, bytearray, list, tuple, range
Operation Result
x in s True if an item of s is equal to x, else False
x not in s False if an item of s is equal to x, else True
s + t the concatenation of s and t
s * n, n * s n shallow copies of s concatenated
s[i] i‘th item of s, origin 0
s[i:j] slice of s from i to j
s[i:j:k] slice of s from i to j with step k
len(s) length of s
min(s) smallest item of s
max(s) largest item of s
Old String Formatting Operations
Conversion Meaning
'd' Signed integer decimal.
'i' Signed integer decimal.
'o' Signed octal value.
'u' Obselete type – it is identical to 'd'.
'x' Signed hexadecimal (lowercase).
'X' Signed hexadecimal (uppercase).
'e' Floating point exponential format (lowercase).
'E' Floating point exponential format (uppercase).
'f' Floating point decimal format.
'F' Floating point decimal format.
'g' Floating point format. Uses lowercase exponential format if exponent is less than -4 or not less than precision, decimal format otherwise.
'G' Floating point format. Uses uppercase exponential format if exponent is less than -4 or not less than precision, decimal format otherwise.
'c' Single character (accepts integer or single character string).
'r' String (converts any python object using repr()).
's' String (converts any python object using str()).
'%' No argument is converted, results in a '%' character in the result.
Mutable Sequence Types
Operation Result Notes
s[i] = x item i of s is replaced by x
s[i:j] = t slice of s from i to j is replaced by the contents of the iterable t
del s[i:j] same as s[i:j] = []
s[i:j:k] = t the elements of s[i:j:k] are replaced by those of t
del s[i:j:k] removes the elements of s[i:j:k] from the list
s.append(x) same as s[len(s):len(s)] = [x]
s.extend(x) same as s[len(s):len(s)] = x
s.count(x) return number of i‘s for which s[i] == x
s.index(x[, i[, j]]) return smallest k such that s[k] == x and i <= k < j
s.insert(i, x) same as s[i:i] = [x]
s.pop([i]) same as x = s[i]; del s[i]; return x
s.remove(x) same as del s[s.index(x)]
s.reverse() reverses the items of s in place
s.sort([key[, reverse]]) sort the items of s in place
分享到:
相关推荐
使用独立 Python 进行文档聚类。 这是对“使用 Python 进行文档聚类”的修改。 此版本将在 Tkinter 窗口中运行。 要使用 nltk,您必须将任何语料库从 nltk 下载到目录: python -m nltk.downloader 然后将其链接到您...
10. **文档注释**:每个函数和类(除非非常简单)都应有文档字符串,如`def read_file(file_name): """read txt then output its context"""`,以便其他开发者了解其功能和用法。 11. **缩进**:使用四个空格作为...
部分摘自官网文档. 该模块安装很简单 $ pip install xlwt 先来个简单的例子: #!/usr/bin/python #coding=utf-8 # ============================================================================== # # Filename...
在此处阅读文档: : 名字叫什么? “当雷神与全能说话时,任何听到他的人都会听到他在心中说母语。” ------(摘自雷神维基页面) 运行测试 $ pip install . $ pip install .[testing] 要在当前的Python版本中运行...
4. **源代码**:与运放应用相关的编程实现,可能使用MATLAB、Python或其他语言进行信号处理或仿真。 5. **电路板设计文件**:如果设计涉及到硬件制作,可能包含PCB布局文件,如EAGLE或Altium Designer格式。 6. **...
包含的功能用于任务,例如宽度归一化弹性变形裁剪准备一个归一化(除以 255)的图像向量代码中添加了详细的文档,我添加的部分功能摘自网络要求Opencv-2.x Python麻木的scipy 由于这是我第一次上传 github,因此...
压缩包里面有源代码和文档。以下摘自前述网站: Introduction LIBSVM is an integrated software for support vector classification, (C-SVC, nu-SVC), regression (epsilon-SVR, nu-SVR) and distribution ...
基于词嵌入对文本相似性进行检测(含源码、数据集、说明文档)(深度学习实战).zip # 使用词嵌入计算文本相似性 ## 简介 - 利用词嵌入实现文本之间的相似性计算等操作。 ## 词嵌入 - 在自然语言处理中,对字符的...
毛毛雨文档 drizzle库是一个Python软件包,用于将抖动图像合并为单个图像。 该库派生自DrizzlePac中使用的代码。 像DrizzlePac一样,大多数代码都是用C语言实现的。 DrizzlePac的最大变化是,此代码传递了一个数组...
3. **HTML解析**:从网页中提取数据通常需要解析HTML,Python的BeautifulSoup库可以方便地解析HTML文档,提取出需要的信息。 4. **HTTP请求**:在Python中,可以使用requests库来发送HTTP请求,获取网页内容。在`...
ipython 是一个 python 的交互式 shell,比默认的python shell 好用得多,支持变量自动补全,自动缩进,支持 bash shell 命令,内置了许多很有用的功能和函数。在ubuntu 下只要 sudo apt-get ...摘自:大头技术文档
摘自:http://mbstudio.spaces.live.com/blog/cns!C898C3C40396DC11!955.entry 2007/1/30 oSIP协议栈(及eXoSIP,Ortp等)使用入门(原创更新中) (CopyLeft by Meineson | www.mbstudio.cn,原创文章,欢迎转载,...
使用文档检出该演示: : 港口Python: (作者:Omar Estrella) PHP: (由Rotari Gheorghe) PHP: (作者Andrey Chumak) Java: (作者Ekene Ijeoma) Java: (作者:HeinrichGöbl) 处理: (作者:Ekene ...
NLP的Scikit学习风格模型...完整的API文档 Finetune API导览 微调基础语言模型就像调用Classifier.fit一样容易: model = Classifier () # Load base model model . fit ( trainX , trainY ) # Finetune base model
pytorch_YOLO_OpenVINO_demo 集成Pytorch YOLO模型(YOLO...关于YOLOV3 本文档使用Darknet YOLOV3模型,因为作者尚未找到公共的pytorch版本。 关于YOLOV4 摘自YOLOV4的其中一位作者KinYiu Wong发布的存储库。 从存储
数据报告(Google文档文档)3.JIRA看板 与该项目有关的数据摘自[ ] AutoLib项目是一个处理从电动汽车站收集的数据的项目。在这个项目中,我们寻求获得信息以识别在巴黎市内当月最流行的时间在巴黎市购买共享电动...
==摘要== 在本文中,我们设计并构建了模型,以帮助医生完成诊断罕见疾病的任务。 使用由“疾病名称”和“摘要”...模型基于收集到的信息和先验信息(摘自 Orphanet),并使用基本的“词频 - 逆文档频率”模型实现。