Python 字典操作 字串大小寫 遍歷類中成員

2021-09-24 09:45:55 字數 989 閱讀 9472

字典操作:

for key in d.keys():

# d.keys() -> ['y', 'x', 'z']

print key,

for value in d.values():

# d.values() -> [2, 1, 3]

print value,

for key, value in d.items():

# d.items(): list of d's (key, value) pairs, as 2-tuples

# [('y', 2), ('x', 1), ('z', 3)]

print key,'corresponds to',value

site.pop('name')

字串大小寫轉換:

a.upper()

a.lower()

首字母轉換成大寫, 其餘轉換成小寫

a.capitalize()

所有單詞的首字母轉換成大寫, 其餘轉換成小寫

a.title()

a.isupper()

a.islower()

判斷所有單詞的首字母為大寫

a.istitle()

遍歷物件中所有成員:

class site(object):

def __init__(self):

self.title = 'share js code'

self.url = ''

def list_all_member(self):

for name,value in vars(self).items():

print('%s=%s'%(name,value))

if __name__== '__main__':

site = site()

site.list_all_member()

a.get比a["name"]更安全,如果key不存在。get函式返回空none,但不會出錯。

python 字典和字串操作

字典與字串操作 1.自定義函式 a 123 defjia a a 10 print a jia a print a 2.字典的用法 dict a defzidian a,b dict a a b zidian 5 five print dict a 3.get 函式 a cc input 請輸入您要...

Python字串與字典的操作

劃重點 一 字串的操作 僅列出重點部分 name alex 首字母大寫 print name.capitalize 計算字串出現的個數 print name.count a 完美的分割線 用作樣式 print name.center 50,判斷字串以什麼結尾 print name.endswith ...

Python 字串與字典

如 就是轉義字元,t,n 無意義與有意義相互轉換 print 我愛 t我的祖國,國也愛我 雙引號中的雙引號 print 我愛我的祖國,祖國也愛我 單引號中的單引號 print 我愛我的祖國,祖 n祖國也 r n愛我 無意義的變成有意義的 print 我愛我的祖國,祖國也愛我 n 字串 有多個字母,數...