python3语法糖_Python笔记3:语法糖

运算

数字运算

运算会根据结果自动判断结果是int还是float

用到除法的时候,结果自动输出为float

双斜杠//得到的结果是int

取模(余数)还是%

>>> 2+2

4

>>> 50-5*6

20

>>> (50-5*6)/4

5.0

>>> 8/5

1.6

>>> 5.0/1.6

3.125

>>> 17//3

5

>>> 17%3

2

赋值 =

多次方 2**7 2的7次方

完全支持浮点型和整型混合运算

最后一个值会被被赋给变量_,

保留小数点,如保留2位round(num,2)

# 赋值

>>> width = 20

>>> height = 30

>>> width * height

600

# 阶乘

>>> 2**7

128

>>> 5**2

25

# 默认赋值符

>>> 4*3.5+5-8.5

10.5

>>> _*3

31.5

>>> _+0.123

31.623

# 保留小数点

>>> round(_,2)

31.62

字符串

# 相同引号不转义会报错

>>> 'It's'

File "", line 1

'It's'

^

SyntaxError: invalid syntax

# 转义

>>> 'It\'s'

"It's"

>>> "\"Yes,\" he said."

'"Yes," he said.'

# 不同引号可以直接包含

>>> "It's"

"It's"

# \n是换行符

>>> print('line\nnewline')

line

newline

# 加r 使用原始字符串

>>> print(r'line\nnewline')

line\nnewline

# 换行符

>>> print("""

... hello

... world

... """)

hello

world

# 换行,防止空行

>>> print("""\

... hello

... world

... """)

hello

world

# 字符串 + * 运算

>>> print(3*" hello " + 'world')

hello hello hello world

# 字符串自动拼接

>>> 'python' ' good'

'python good'

字符串索引

>>> content = 'hello world'

# 正索引

>>> content[0]

'h'

>>> content[5]

' '

>>> content[9]

'l'

# 后端索引

>>> content[-1]

'd'

>>> content[-5]

'w'

# 连续索引

# content[包括:不包括]

>>> content[:5] # 0-5

'hello'

>>> content[4:5] # 4-5

'o'

>>> content[0:] # 0-end

'hello world'

>>> content[-10:] # end-(end-10)

'ello world'

# 长度

>>> len(content)

11

Lists

# 列表不同的项之间用逗号隔开

# 最好后面再加个空格,和下面打印出来的一样

>>> list = [1,2,3,4,5,100]

>>> list

[1, 2, 3, 4, 5, 100]

# 索引,和字符串一样

>>> list[2]

3

>>> list[-2]

5

>>> list[-2:]

[5, 100]

>>> list[:-2]

[1, 2, 3, 4]

# 全部请求

>>> list[:]

[1, 2, 3, 4, 5, 100]

# 连接list

>>> list + [101,102]

[1, 2, 3, 4, 5, 100, 101, 102]

# 可变类型

>>> list[1] = 11

>>> list

[1, 11, 3, 4, 5, 100]

# 追加操作

>>> list.append(103)

>>> list

[1, 11, 3, 4, 5, 100, 103]

# 胡求变

>>> list

[1, 11, 3, 4, 5, 100, 103]

>>> list[1:3] = ['A','b','C']

>>> list

[1, 'A', 'b', 'C', 4, 5, 100, 103]

>>> list[0:2] = []

>>> list

['b', 'C', 4, 5, 100, 103]

>>> list = []

>>> list

[]

# 列表嵌套及运算

>>> a = [2,3,4]

>>> b = [3,4,5]

>>> list = [a,b]

>>> list

[[2, 3, 4], [3, 4, 5]]

>>> list = list + a + b

>>> list

[[2, 3, 4], [3, 4, 5], 2, 3, 4, 3, 4, 5]

>>> list[1]

[3, 4, 5]

>>> list[5]

3

>>> list[0][2]

4

# 斐波那契数列(注意...格式,否则会报错)

>>> a,b = 0,1

>>> while b< 1000:

... print(b,end=',')

... a,b = b,a+b

...

1,1,2,3,5,8,13,21,34,55,89,144,233,377,610,987,>>>

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/470653.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

【代码笔记】iOS-清除图片缓存UIActionSheet

一&#xff0c;效果图。 二&#xff0c;代码。 RootViewController.m //点击任何处出现sheet -(void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event {UIActionSheet * sheet [[UIActionSheet alloc] initWithTitle:"确定要清空图片缓存&#xff1f;" d…

Chapter5_Speaker_Verification

文章目录1 Task Introduction2 模型架构3 模型介绍3.1 i-vector3.2 d-vector3.3 x-vector3.4 more4 End to End本文为李弘毅老师【Speaker Verification】的课程笔记&#xff0c;课程视频youtube地址&#xff0c;点这里&#x1f448;(需翻墙)。 下文中用到的图片均来自于李宏毅…

python如何读取字典的关键字_python提取字典key列表的方法

python提取字典key列表的方法 更新时间&#xff1a;2015年07月11日 12:04:48 作者&#xff1a;企鹅不笨 这篇文章主要介绍了python提取字典key列表的方法,涉及Python中keys方法的使用技巧,具有一定参考借鉴价值,需要的朋友可以参考下 本文实例讲述了python提取字典key列表的方法…

使用express搭建服务器获取MySQL数据库数据

一、原始的mysql查询方法 先安装mysql cnpm install mysql --save 引入这个db.js之后&#xff0c;才能对数据库进行查询 进行查询 查询结果如下&#xff1a; 二、ORM 介绍 ORM 全拼Object-Relation Mapping. 中文意为 对象-关系映射. 主要实现模型对象到关系数据库…

java GZIP压缩和解压

最近碰到了一个按GZIP解压指定的输入流数据&#xff0c;备份下 import java.io.ByteArrayInputStream; import java.io.ByteArrayOutputStream; import java.io.IOException; import java.util.zip.GZIPInputStream; import java.util.zip.GZIPOutputStream;/*** 压缩&#xff…

python数据库连接池_Python实现数据库连接池

1.初始化 def __init__(self, **kwargs): self.size kwargs.get(size, 10) self.kwargs kwargs self.conn_queue queue.Queue(maxsizeself.size) for i in range(self.size): self.conn_queue.put(self._create_new_conn()) size&#xff1a;连接池支持的连接数&#xff0c;…

Chapter6_Vocoder

文章目录1 Introduction2 WaveNet2.1 WaveNet的架构2.2 Softmax Distribution2.3 Causal Convolution和Dilated Convolution2.4 Gated Activation Unit2.5 小结3 FFTNet4 WaveRNN4.1 Dual Softmax Layer4.2 Model Coarse4.3 Model Fine4.4 小结5 WaveGlow本文为李弘毅老师【Voc…

show一下自己的文档编写功底

以我为例&#xff0c;我绝对相信&#xff0c;“才华”和颜值成反比。“才华”二字加了引号了&#xff0c;自知跟优秀有孙大圣一个筋斗云的距离&#xff0c;不过某些细节方面表现得被认为还不错&#xff0c;这里我要秀一下我的文档编写能力。在我这十年的工作生涯里&#xff0c;…

mysql命令速查手册

数据准备 -- 创建数据库 create database qianduan_test charsetutf8;-- 使用数据库 use qianduan_test;-- students表 create table students(id int unsigned primary key auto_increment not null,name varchar(20) default ,age tinyint unsigned default 0,height decima…

Chapter7-1_Overview of NLP Tasks

文章目录1 Introduction2 Part-of-Speech(POS) Tagging3 Word Segmentation4 Parsing5 Coreference Resolution6 Summarization7 Machine Translation8 Grammar Error Correction9 Sentiment classification10 Stance Detection11 Natural Language Inference(NLI)12 Search En…

python制作文本编辑器_Python小实战:制作文本编辑器

学了半年了&#xff0c;该施展一下了&#x1f37a; 做什么呢&#xff1f;做一个简单的文本编辑器吧 来&#xff0c;开始 知识点&#xff1a; 1&#xff09;做窗体的知识 2&#xff09;文件操作 窗体用的是tkinter简单模块&#xff0c;系统自带模块 有人说了&#xff1a;“哇&am…

OGNL 详解

Struts2 OGNL详解 1.概念&#xff1a; OGNL是Object-Graph Navigation Language的缩写&#xff0c;全称为对象图导航语言&#xff0c;是一种功能强大的表达式语言&#xff0c;它通过简单一致的语法&#xff0c;可以任意存取对象的属性或者调用对象的方法&#xff0c;能够遍历整…

完善获取数据库数据的写法

上一篇&#xff1a;使用express搭建服务器获取MySQL数据库数据 一、完善获取数据库数据的写法 asyncawait版本&#xff1a; const express require(express) const db require(./db/nodejs-orm/index.js)const app express()app.get("/get_data", (req, res) …

Chapter7-2_BERT and its family - Introduction and Fine-tune

文章目录1 What is pre-train model2 How to fine-tune2.1 Input2.2 Output2.3 Fine-tune2.4 Weighted Features3 Why fine-tune本文为李弘毅老师【BERT and its family - Introduction and Fine-tune】的课程笔记&#xff0c;课程视频youtube地址&#xff0c;点这里&#x1f4…

python数据分析基础教程 numpy_Python数据分析基础教程:NumPy学习指南(第2版)

Python数据分析基础教程&#xff1a;NumPy学习指南&#xff08;第2版&#xff09; Ivan Idris (作者) 张驭宇 (译者) NumPy是一个优秀的科学计算库&#xff0c;提供了很多实用的数学函数、强大的多维数组对象和优异的计算性能&#xff0c;不仅可以取代Matlab和Mathematica的许多…

【BZOJ-2435】道路修建 (树形DP?)DFS

2435: [Noi2011]道路修建 Time Limit: 10 Sec Memory Limit: 128 MBSubmit: 3115 Solved: 1002[Submit][Status][Discuss]Description 在 W 星球上有 n 个国家。为了各自国家的经济发展&#xff0c;他们决定在各个国家之间建设双向道路使得国家之间连通。但是每个国家的国王都…

CSRF跨站请求伪造

一、CSRF跨站请求伪造 CSRF全拼为Cross Site Request Forgery&#xff0c;译为跨站请求伪造。 CSRF指攻击者盗用了你的身份&#xff0c;以你的名义发送恶意请求。 包括&#xff1a;以你名义发送邮件&#xff0c;发消息&#xff0c;盗取你的账号&#xff0c;甚至于购买商品&a…

升级 ubuntu_Ubuntu 19.04 已经到期!现有用户必须升级到 Ubuntu 19.10

Ubuntu 19.04 已在 2020 年 1 月 23 日到期&#xff0c;这意味着运行 Ubuntu 19.04 的系统将不再会接收到安全和维护更新&#xff0c;因此将使其容易受到攻击。-- Abhishek Prakash(作者)Ubuntu 19.04 发布于 2019 年 4 月 18 日。由于它不是长期支持(LTS)版本&#xff0c;因此…

Chapter7-3_BERT and its family - ELMo, BERT, GPT, XLNet, MASS, BART, UniLM, ELECTRA, and more

文章目录1 How to pre-train2 Predict next token3 Mask Input4 seq2seq的pre-train model5 ELECTRA6 Sentence Embedding本文为李弘毅老师【BERT and its family - ELMo, BERT, GPT, XLNet, MASS, BART, UniLM, ELECTRA, and more】的课程笔记&#xff0c;课程视频youtube地址…

JavaScript调试工具

JavaScript代码看起来总是要比Java、C#乱的多&#xff0c;可能是自己还不熟悉JavaScript编程&#xff0c;因此一款优秀的JavaScript调试器就显得格外重要。目前在网络和书上见到最多的有&#xff1a; 第一个&#xff1a;Microsoft Script Debugger: 集成在IE中的一款很原始的调…