python字串 元組和列表常用的一些方法

2021-06-04 10:42:03 字數 775 閱讀 3163

#coding=utf-8

#the first method

print "\n"

#尋找字串中第乙個出現可以用find

#尋找由特定間隔符隔開的第乙個可以用find

#需找特定間隔符隔開的第幾個,先用split分割,然後用下標找

#判斷乙個元素是否在列表中,可以使用in很簡單

file_object =open("c:\\sqltest.txt","r")

sqlquery=["select","show"]

sqlupdate=["insert","update","delete"]

sqldml=["create","drop"]

lines = file_object.readlines()

for line in lines:

sql = line

n=sql.find(" ")

sqltype = sql[0:n]

if sqltype in sqlquery:

print sqltype+" is a query sql"

elif sqltype in sqlupdate:

print sqltype+" is a update sql"

elif sqltype in sqldml:

print sqltype+" is a create/drop sql"

#print sql,

print "\n\nsuccess"

file_object.close()

python列表 元組 字串

python中列表 元組 字串均為可迭代物件 lst 1 2,3 4 for i in lst print i,end print tu 1 2,3 4 for i in tu print i,end print str 1234 for i in str print i,end print 1 2...

python 列表 元組 字串

列表新增 list.extend list.insert 列表刪除 list.remove 刪除某乙個元素 list.pop 刪除某乙個返回刪除的哪乙個,預設刪除最後乙個 del list 這是個語句也可以刪除整個元素,加括號刪除某乙個元素 列表分片 list 1 3 從第二個到第四個切割,並顯示出...

python小記 列表 元組和字串

目錄 列表 元組和字串都可以稱作為序列 一 他們的共同特點 二 列表list 三 元組tuple 四 字串str 1 都可以通過索引得到每乙個元素例子 例子 index 小英子 90,80,滴滴答答 78,東方 index 0 索引值總是從0開始 小英子 index 1 索引值可以是個負數,從後面往...