它以字符類 [az] 表示的 1 到 6 個小寫字母開頭小寫字母后跟可選的下劃線 i、e 零或一次出現的 _ 字符可選的下劃線后跟由字符類 [0-9] 表示的 0 到 4 個可選數字必須以@example.com 結尾import rere.match('^[a-z]+([_ or number]+)mustendwith.example.com, addressToVerify)結果: [email protected] True [email protected] True [email protected] True [email protected] False #since afternumber _ must not come [email protected] False我對python很陌生,任何人都可以幫助我。我已經嘗試但無法實現import rere.match('^[a-z]+([_ or number]+)mustendwith.example.com, addressToVerify)
添加回答
舉報
0/150
提交
取消