百度360必应搜狗淘宝本站头条
当前位置:网站首页 > 技术资源 > 正文

Python 3.9部分教程 计算 列表 字符串 切片等

off999 2024-09-21 21:03 40 浏览 0 评论

>>> 2 + 2

4

>>> 50 - 5*6

20

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

5.0

>>> 8 / 5

1.6 # division always returns a floating point number 除法总是返回一个浮点数


>>> 17 / 3

5.666666666666667 # classic division returns a float 经典除法返回一个浮点数


>>>

>>> 17 // 3

5 # floor division discards the fractional part 向下取整丢弃小数部分



>>> 17 % 3

2 # the % operator returns the remainder of the

division %操作符返回除法的余数


>>> 5 * 3 + 2

17 # floored quotient * divisor + remainder 商*除数+余数


>>> 5 ** 2 # 5 squared 5的平方

25

>>> 2 ** 7 # 2 to the power of 7 2的7次方

128


>>> width = 20

>>> height = 5 * 9

>>> width * height

900


>>> n # try to access an undefined variable 未定义变量

Traceback (most recent call last):

File "<stdin>", line 1, in <module> 第一行

NameError: name 'n' is not defined 未定义n


>>> 4 * 3.75 - 1 浮点运算

14.0


>>> tax = 12.5 / 100

>>> price = 100.50

>>> price * tax

12.5625

>>> price + _

113.0625

>>> round(_, 4)

113.0625

>>> round(_,3)

113.062


>>>'spam eggs' # single quotes 单引号

'spam eggs'

>>> 'doesn\'t'

"doesn't" # use \' to escape the single quote... 使用 \' 转义符 把单引号变双引号 …


>>> "doesn't"

"doesn't" # ...or use double quotes instead 或者使用双引号


>>> '"Yes," they said.' 放在单引号内

'"Yes," they said.'


>>> "\"Yes,\" they said." 使用\' 转义符 把双引号变单引号

'"Yes," they said.'

>>> '"Isn\'t," they said.'

'"Isn\'t," they said.'


>>> print('"Isn\'t," they said.') #输出单引号内的内容

"Isn't," they said.



# \n means newline \ n表示换行符

>>> s = 'First line.\nSecond line.'

>>> s

'First line.\nSecond line.' # without print(), \n is included in the output 没有print() \n包含在输出中


>>> print(s)

First line.

Second line # with print(), \n produces a new line 使用print(), \n产生换行作用


>>> print('C:\some\name')

C:\some

ame # here \n means newline! 这里\n默认会表示换行


>>> print(r'C:\some\name')

C:\some\name # note the r before the quote 注意前面加 r 可以让特殊符号失去作用


''' ''' 或 """ """ \ 可以跨越多行输入

print(''' ''') 或者 print(""" """)


>>> # 3 times 'un', followed by 'ium' 3乘以un,然后加ium

>>> 3 * 'un' + 'ium'

'unununium'


>>> 'Py' 'thon'

'Python'

>>> '大''家''好'

'大家好'

>>> text = ('Put several strings within parentheses '

'to have them joined together.')

>>> text

'Put several strings within parentheses to have them joined together.


如果您要将变量或变量与文字串联,请使用 +

>>> prefix = 'Py'

>>> prefix + 'thon'

'Python'


>>> word = 'Python'

>>> word[0]

'P' # character in position 0 索引第一个字符默认是 0

>>> word[5]

'n' # character in position 5 位置5的字符是n 因第一个字符是0

>>> word[-1]

'n' # last character 最后一个字符 由于 -0 与 0 相同 负指数从 -1 开始

>>> word[-2] # second-last character 倒数第二字符

'o'

>>> word[-6]

'P

>>> word[0:2]

'Py' # characters from position 0 (included) to 2 (excluded) 还可以切片 从0到2但不包括2的所有字符

>>> word[2:5]

'tho # characters from position 2 (included) to 5 (excluded) 从位置2到5但不包括5的所有字符

>>> word[:2]

'Py' # character from the beginning to position 2 (excluded) :前没数索引位置默认是0也就是最开头 从开始到位置2但不包括位置2全部字符

>>> word[4:]

'on' # characters from position 4 (included) to the end :后没数默认是从......一直到最后 从位置4到最后的全部字符

>>> word[-2:]

'on' # characters from the second-last (included) to the end 从倒数第2到最后的全部字符

>>> word[:2] + word[2:]

'Python' 开始到第2位置但不包含2 + 从第2位置到最后

>>> word[:4] + word[4:]

'Python' 开始到第4位置但不包含4 + 从第4位置到最后


# the word only has 6 characters 太大的索引将导致错误 word只有6个字符

>>> word[42]

Traceback (most recent call last):

File "<stdin>", line 1, in <module>

IndexError: string index out of rang 索引错误字符串索引超出范围


但是切片就会优雅地处理范围外切片索引

>>> word[4:42]

'on'

>>> word[42:]

''


Python字符串无法更改 它们是不变的。

>>> word[0] = 'J'

Traceback (most recent call last):

File "<stdin>", line 1, in <module>

TypeError: 'str' object does not support item assignment


但是可以创建一个新的字符串

>>> 'J' + word[1:]

'Jython'

>>> word[:2] + 'py'

'Pypy'


索引位置

+---+---+---+---+---+---+

| P | y | t | h | o | n |

+---+---+---+---+---+---+

0 1 2 3 4 5 6

-6 -5 -4 -3 -2 -1


内置功能 len() 返回字符串长度

>>> s = 'supercalifragilisticexpialidocious'

>>> len(s)

34


列表

>>> squares = [1, 4, 9, 16, 25]

>>> squares

[1, 4, 9, 16, 25]

列表也可以索引和切片

>>> squares[0] # indexing returns the item

1

>>> squares[-1]

25

>>> squares[-3:] # slicing returns a new list

[9, 16, 25]

>>> squares[:]

[1, 4, 9, 16, 25]

列表还支持串联等操作

>>> squares + [36, 49, 64, 81, 100]

[1, 4, 9, 16, 25, 36, 49, 64, 81, 100]


与不变的字符串不同,列表是一种可变类型,即可以更改其内容

>>> cubes = [1, 8, 27, 65, 125] # something's wrong here 这里的第四个是错误输入

>>> 4 ** 3

64 # the cube of 4 is 64, not 65! 4的三次方是64不是65

>>> cubes[3] = 64 # replace the wrong value 替换65

>>> cubes

[1, 8, 27, 64, 125]

在列表末尾添加新项目

>>> cubes.append(216) # add the cube of 6 加入6的3次方

>>> cubes.append(7 ** 3) # and the cube of 7 加入7的3次方

>>> cubes

[1, 8, 27, 64, 125, 216, 343]


分配到切片也是可能的,这甚至可以更改列表的大小或完全清除它

>>> letters = ['a', 'b', 'c', 'd', 'e', 'f', 'g']

>>> letters

['a', 'b', 'c', 'd', 'e', 'f', 'g']

>>> # replace some values 替换一些值

>>> letters[2:5] = ['C', 'D', 'E']

>>> letters

['a', 'b', 'C', 'D', 'E', 'f', 'g']

>>> # now remove them 现在删除它们

>>> letters[2:5] = []

>>> letters

['a', 'b', 'f', 'g']

>>> # clear the list by replacing all the elements with an empty list 通过将所有元素替换为空列表来清除列表

>>> letters[:] = []

>>> letters

[]


内置功能len()也适用于列表

>>> letters = ['a', 'b', 'c', 'd']

>>> len(letters)

4


可以嵌套列表(创建包含其他列表的列表)

>>> a = ['a', 'b', 'c']

>>> n = [1, 2, 3]

>>> x = [a, n]

>>> x

[['a', 'b', 'c'], [1, 2, 3]]

>>> x[0] # x第一个列表a

['a', 'b', 'c']

>>> x[0][1] # x第一个列表 a里的第2个元素

'b'


>>> # Fibonacci series: 斐波纳契数列

... # the sum of two elements defines the next

... a, b = 0, 1 # a b分别赋值0和1

>>> while a < 10:

... print(a) # 注意缩进TAB

... a, b = b, a+b # a赋值等于b ,b赋值等于a+b

...

0

1

1

2

3

5

8


>>> i = 256*256

>>> print('The value of i is', i)

The value of i is 65536

>>> a, b = 0, 1

>>> while a < 1000:

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

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

...

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


任何非零整数值都是真实的 零是假的 任何长度为非零的都是真的, 空序列是假的

(小于)、(大于)、(等于)、(小于或等于)、(大于或等于)和(不等于)

< > == <= >= !=



>>> x = int(input("Please enter an integer: "))

Please enter an integer: 56


if语句

>>> if x < 0: # 如果

... x = 0 # 注意缩进

... print('Negative changed to zero')

... elif x == 0: 否则

... print('Zero')

... elif x == 1:

... print('Single')

... else:

... print('More')

...

More


for语句

>>> # Measure some strings: 测量一些字符串

... words = ['cat', 'window', 'defenestrate']

>>> for w in words:

... print(w, len(w))

...

cat 3

window 6

defenestrate 12

相关推荐

云电脑app哪个好(手机云电脑app哪个最好)

答:以下是一些比较好的云电脑应用程序推荐:1.AnyDesk-支持Windows、MacOS、Linux、Android和iOS,可用于远程访问和控制PC或移动设备。2.Splashtop...

怎样注册邮箱163免费(怎样注册邮箱163免费账号)

一、工具:电脑(联网)、浏览器二、操作步骤:【1】打开浏览器,找到“163邮箱”,点击。【2】点击右边的“注册”。【3】网站默认注册手机号码邮箱,填写信息,点击“注册”。若不想泄漏手机号码或不想使用手...

微软surface pro 6(微软surface pro 6可以扩容吗)

SurfacePro6的接口包含:1个标准尺寸USB3.0端口,3.5mm耳机插孔,MiniDisplayPort,1个SurfaceConnect端口,Surface专业键盘盖端口,microSDX...

电源已接通未充电怎么回事(电源已接通未充电 真正解决办法)

原因分析:出现这样的原因有可能是长时间没有充电,导致电池的内部电量耗完后亏电严重,只是电脑充电的保护,不让过充而已,只要设置一下电池选项一般就可以解决问题了。解决方法:1、关机,拔下电源,拔出电池,...

华为云会议app下载(华为云会议下载)

 华为云会议可以在PC客户端或者手机客户端上一键发起立即会议,1秒创会。然后在会中选择企业通讯录中的人加入,系统会自动呼叫这些与会人,接听后即加入会议。ZOOM是一个云会议服务平台,为客户提...

路由器重置方法(路由器重置方法详细步骤)

路由器靠近WAN口边上的有一个小孔用于路由器的重置,路由器配置完成后,我们可能会忘记他的用户名或者是密码,那么我们可以把它恢复到出厂设置,再靠近万口或电源之间,有一个小孔,用一个尖锐的金属查一下大约五...

100个有效qq号以及密码(有效qq号和密码大全)

如果你的电脑知识好的话,不妨用一些复合密码!SHIFT+一些特殊符号,字母,数字!虽然麻烦了点,但总比被人盗号了的好,是吧!最好还用手机绑定一下,这样的话方便改密码也不怕QQ被盗了哦。。。QQ密码找回...

win10家庭中文版下载官网(windows10家庭中文版下载)

你好,激活Win10家庭中文版的方法:1.购买正版Win10家庭中文版激活码,然后在计算机上输入激活码,即可完成激活。2.如果您已经安装了Win10家庭中文版,但尚未激活,可以通过以下步骤激活:-...

电脑截图在哪里找(电脑截图在哪里找图片win10)

截图默认会保存在电脑的剪贴板中,可以通过以下步骤将其保存到本地:1.打开任意一款图片软件,如Paint、Photoshop、Word等。2.按下键盘上的Ctrl+V,或者在软件菜单栏中选择&#...

电脑里一堆microsoft visual

按照系统向下兼容原理,保留2010就可以了.1)你安装的时候是不是把创建快捷键的选项框都没选上,导致在开始菜单中没有找到相应的链接?2)去你的安装目录下,找到Microsoftvisualc++...

windows无法识别usb(windows无法识别usb设备)
windows无法识别usb(windows无法识别usb设备)

Windows无法识别USB,解决办法如下右键开始菜单打开设备管理器,在通用串行总线控制器中右键点击设备选择“卸载”,完成后重新启动计算机即可解决问题。这有可能是在组策略中禁用了USB口,可以使用快捷键【Win+R】运行gpedit.msc...

2025-11-10 11:51 off999

bios能看到硬盘 开机找不到硬盘

bios里可以看到硬盘,说明硬盘已经被主板识别。进系统找不到,可能硬盘没分区,或者硬盘是动态磁盘,还没有导入或激活。按win+r,输入diskmgmt.msc回车,就打开磁盘管理了,在里面可以给新硬盘...

找回qq聊天记录的方法(找回qq聊天记录怎么找)
  • 找回qq聊天记录的方法(找回qq聊天记录怎么找)
  • 找回qq聊天记录的方法(找回qq聊天记录怎么找)
  • 找回qq聊天记录的方法(找回qq聊天记录怎么找)
  • 找回qq聊天记录的方法(找回qq聊天记录怎么找)
无线网有个红叉(无线网有个红叉,搜索不到网络)

连接失败,路由坏换路由,外网坏,报修无线网络处出现红叉表示设备无法正常工作。请检查网卡驱动是否正常,无线网络开关是否打开。解决方法:查看电脑是否有无线网络开关,且是否打开。进入设备管理器检查网卡驱动是...

thinkpad笔记本官网首页(thinkpad官方商城)

官方网站 国内:http://www.thinkworld.com.cn   国内用户只需要访问国内即可。  ThinkPad,中文名为“思考本”,在2005年以前是IBMPC事业部旗下的便携式计算机...

取消回复欢迎 发表评论: