python练习

#字符集
import re
s='abc,acc,adc,aec,afc,ahc'
# r=re.findall('a[cf]c',s)
# print(r)

# ['acc', 'afc']
# Process finished with exit code 0

# r=re.findall('a[cfd]c',s)
# print(r)
# ['acc', 'adc', 'afc']
# Process finished with exit code 0
r=re.findall('a[c-f]c',s)
print(r)

# ['acc', 'adc', 'aec', 'afc']
#

# Process finished with exit code 0

import re
a='c0c++7java8javascript6python'
#r=re.findall('\d',a)
#在a里找出数字 ['0', '7', '8', '6']
#   'python'  普通字符  '\d' 匹配一个数字字符等价于[0-9]
# Process finished with exit code 0
r=re.findall('\D',a)

# 匹配非数字['c', 'c', '+', '+', 'j', 'a', 'v', 'a', 'j', 'a', 'v', 'a', 's', 'c', 'r', 'i', 'p', 't', 'p', 'y', 't', 'h', 'o', 'n']
#
# Process finished with exit code 0
# if len(r) >0:
#     print('字符串包含php')
# else:
#     print('no')
print(r)
#print(a.index('python')>-1)
#print('python' in a)




评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值