python之函式用法startswith

2021-09-07 03:33:13 字數 911 閱讀 4504

#

-*- coding: utf-8 -*-

#python 27

#xiaodeng

#python之函式用法startswith()

##startswith()

#說明:返回布林值,用於檢查字串是否是以指定子字串開頭,如果是則返回 true,否則返回 false。

'''startswith(...)

s.startswith(prefix[, start[, end]]) -> bool

prefix:字首

start:字串的開始位置

end:字串結束位置

return true if s starts with the specified prefix, false otherwise.

with optional start, test s beginning at that position.

with optional end, stop comparing s at that position.

prefix can also be a tuple of strings to try.

'''#案例#

判斷字串是否以指定字串開頭

str='

xiaodeng love python

'prefix='

xiaodeng

'print str.startswith(prefix)#

true

prefix='

deng

'print str.startswith(prefix,4)#

true

prefix='

love

'print str.startswith(prefix,4,13)#

true

面試之STAR法則

star法則,即為situation task action result的縮寫,具體含義是 situation情境 hr希望你描述乙個你遇到的挑戰 專案。曾經完成的某件重要的且可以當作考評標準的任務的背景狀況。比較繞口好好理解下 task任務 你當時的任務是什麼?hr想知道你是怎樣在上述情境下明確...

python之函式用法 setattr

coding utf 8 python 27 xiaodeng python之函式用法 setattr 用 setattr 函式重構方法 class fruit def init self,color,price self.color color self.price price def setat...

python之函式用法getattr

coding utf 8 python 27 xiaodeng python之函式用法getattr getattr 說明 getattr getattr object,name default value default 預設值 get a named attribute from an obje...