第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號安全,請及時綁定郵箱和手機立即綁定
已解決430363個問題,去搜搜看,總會有你想問的

Python正則表達(dá)式 - r前綴

Python正則表達(dá)式 - r前綴

HUX布斯 2019-08-27 12:33:44
Python正則表達(dá)式 - r前綴任何人都可以解釋為什么下面的示例1有效,何時r不使用前綴?我認(rèn)為r只要使用轉(zhuǎn)義序列,就必須使用前綴。示例2和示例3證明了這一點。# example 1import reprint (re.sub('\s+', ' ', 'hello     there      there'))# prints 'hello there there' - not expected as r prefix is not used# example 2import reprint (re.sub(r'(\b\w+)(\s+\1\b)+', r'\1', 'hello     there      there'))# prints 'hello     there' - as expected as r prefix is used# example 3import reprint (re.sub('(\b\w+)(\s+\1\b)+', '\1', 'hello     there      there'))# prints 'hello     there      there' - as expected as r prefix is not used
查看完整描述

3 回答

?
波斯汪

TA貢獻1811條經(jīng)驗 獲得超4個贊

并非所有涉及反斜杠的序列都是轉(zhuǎn)義序列。\t并且\f是,例如,但\s并非如此。在非原始字符串文字中,任何\不屬于轉(zhuǎn)義序列的內(nèi)容都被視為另一個\

>>> "\s"'\\s'>>> "\t"'\t'

\b 然而,一個轉(zhuǎn)義序列,因此示例3失敗了。(是的,有些人認(rèn)為這種行為很不幸。)


查看完整回答
反對 回復(fù) 2019-08-27
  • 3 回答
  • 0 關(guān)注
  • 943 瀏覽
慕課專欄
更多

添加回答

舉報

0/150
提交
取消
微信客服

購課補貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動學(xué)習(xí)伙伴

公眾號

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號