Python学习笔记(6)

简介: 版权声明:本文为博主chszs的原创文章,未经博主允许不得转载。 https://blog.csdn.net/chszs/article/details/3706207 Python学习笔记(6)1)SequenceSequence是一对象,一个接一个地保存多种数据项。
版权声明:本文为博主chszs的原创文章,未经博主允许不得转载。 https://blog.csdn.net/chszs/article/details/3706207

Python学习笔记(6)



1)Sequence
Sequence是一对象,一个接一个地保存多种数据项。Python中Sequence有几种不同类型。
下面先看两种Sequence基本类型:字符串和列表
在字符串中访问单个字符:
用for循环迭代字符串,语法如下:
for variable in string:
 statement
 statement
 etc.
例子:
>>> name = 'Juliet'
>>> for ch in name:
 print ch
J
u
l
i
e

例2:
# This program counts the number times
# the letter T appears in a string.
def main():
  count = 0
  my_string = raw_input('Enter a sentence: ')
  for ch in my_string:
  if ch == 'T' or ch == 't':
  count +=1
  print 'The letter T appears',count,'times.'
main()

使用索引访问字符串中的单个字符
字符串的每个字符都有一个序号,表示它在字符串中的位置。
例:
>>> my_string = 'Roses are red'
>>> ch = my_string[6]
>>> ch
'a'
>>> print my_string[0],my_string[6],my_string[10]
R a r

还可以用负数做序号,-1表示字符串最后一个字符,-2表示倒数第2个字符,依次类推。
>>> my_string[-1]
'd'
>>> my_string[-2]
'e'

序号错误
序号有范围,如‘Boston’字符串的序号为0~5以及-1~-6。超出此范围则IndexError。
例:
>>> city='Boston'
>>> print city[6]
Traceback (most recent call last):
  File "<pyshell#11>", line 1, in <module>
  print city[6]
IndexError: string index out of range


字符串分割
格式如下:
string[start:end]
例:
>>> full_name = 'Patty Lynn Smith'
>>> middle_name = full_name[6:10]
>>> print middle_name
Lynn

例:
login.py
# The get_login_name function accepts a first name,
# last name, and ID number as arguments. It returns
# a system login name.
def get_login_name(first,last,idnumber):
  # Get the first three letters of the first name.
  # If the name is less than 3 characters, the
  # slice will return the entire first name.
  set1 = first[0:3]
  # Get the first three letters of the last name.
  # If the name is less than 3 characters, the
  # slice will return the entire last name.
  set2 = last[0:3]
  # Get the last three characters of the student ID.
  # If the ID number is less than 3 characters, the
  # slice will return the entire ID number.
  set3 = idnumber[-3:]
  # Put the sets of characters together.
  login_name = set1+set2+set3
  return login_name

P14.py
import login
def main():
  first = raw_input('Enter your first name: ')
  last = raw_input('Enter your last name: ')
  idnumber = raw_input('Enter your student ID number: ')
  # Get the login name.
  print 'Your system login name is:'
  print login.get_login_name(first, last, idnumber)
main()


测试子串是否在字符串中
用in 或 not in

列表的方法
append(item) 在列表最后添加item
index(item) 返回序号指定的元素
insert(index, item) 在指定序号后插入item
sort() 列表按从小到大的顺序排序
remove(item) 删除列表中第一个出现item的项
reverse() 列表反序
例:
>>> my_list = [1,2,3,4,5]
>>> del my_list[2]
>>> print my_list
[1, 2, 4, 5]

>>> my_list=[5,4,3,123,50,40,30]
>>> print 'The lowest value is',min(my_list)
The lowest value is 3
>>> print 'The highest value is', max(my_list)
The highest value is 123


目录
相关文章
|
2月前
|
网络协议 Java Linux
PyAV学习笔记(一):PyAV简介、安装、基础操作、python获取RTSP(海康)的各种时间戳(rtp、dts、pts)
本文介绍了PyAV库,它是FFmpeg的Python绑定,提供了底层库的全部功能和控制。文章详细讲解了PyAV的安装过程,包括在Windows、Linux和ARM平台上的安装步骤,以及安装中可能遇到的错误和解决方法。此外,还解释了时间戳的概念,包括RTP、NTP、PTS和DTS,并提供了Python代码示例,展示如何获取RTSP流中的各种时间戳。最后,文章还提供了一些附录,包括Python通过NTP同步获取时间的方法和使用PyAV访问网络视频流的技巧。
452 4
PyAV学习笔记(一):PyAV简介、安装、基础操作、python获取RTSP(海康)的各种时间戳(rtp、dts、pts)
|
2月前
|
Python
Socket学习笔记(二):python通过socket实现客户端到服务器端的图片传输
使用Python的socket库实现客户端到服务器端的图片传输,包括客户端和服务器端的代码实现,以及传输结果的展示。
173 3
Socket学习笔记(二):python通过socket实现客户端到服务器端的图片传输
|
2月前
|
JSON 数据格式 Python
Socket学习笔记(一):python通过socket实现客户端到服务器端的文件传输
本文介绍了如何使用Python的socket模块实现客户端到服务器端的文件传输,包括客户端发送文件信息和内容,服务器端接收并保存文件的完整过程。
179 1
Socket学习笔记(一):python通过socket实现客户端到服务器端的文件传输
|
2月前
|
关系型数据库 MySQL 数据库
Mysql学习笔记(四):Python与Mysql交互--实现增删改查
如何使用Python与MySQL数据库进行交互,实现增删改查等基本操作的教程。
73 1
|
2月前
|
Ubuntu Linux Python
Ubuntu学习笔记(六):ubuntu切换Anaconda和系统自带Python
本文介绍了在Ubuntu系统中切换Anaconda和系统自带Python的方法。方法1涉及编辑~/.bashrc和/etc/profile文件,更新Anaconda的路径。方法2提供了详细的步骤指导,帮助用户在Anaconda和系统自带Python之间进行切换。
121 1
|
2月前
|
索引 Python
Python学习笔记编程小哥令狐~持续更新、、、(上)
Python学习笔记编程小哥令狐~持续更新、、、(上)
53 2
|
2月前
|
存储 Python
Python学习笔记编程小哥令狐~持续更新、、、 (下)
Python学习笔记编程小哥令狐~持续更新、、、 (下)
35 1
|
2月前
|
存储 Python
【免费分享编程笔记】Python学习笔记(二)
【免费分享编程笔记】Python学习笔记(二)
48 0
【免费分享编程笔记】Python学习笔记(二)
|
2月前
|
Java 编译器 Go
Python学习笔记--- day01计算机基础和环境搭建(一)
Python学习笔记--- day01计算机基础和环境搭建(一)
47 2
|
2月前
|
程序员 编译器 Python
Python学习笔记--- day01计算机基础和环境搭建(二)
Python学习笔记--- day01计算机基础和环境搭建(二)
51 1