程序填空题:python正则表达式-取反练习
请编写正则表达式,匹配不包含小写字母的数据。
```python
import re
contents='''
01234
1234567890
ABCDEFG
CODEJIAONANG123
[]
+_)(91283)
-*/124566ABV
ab
abc
abcd
www
codejiaonang
com
pythonregext
'''
p = re.compile(r'')
for line in p.findall(contents):
print(line)
```
答案:
第1空:[^a-z\n]+
```python
import re
contents='''
01234
1234567890
ABCDEFG
CODEJIAONANG123
[]
+_)(91283)
-*/124566ABV
ab
abc
abcd
www
codejiaonang
com
pythonregext
'''
p = re.compile(r'')
for line in p.findall(contents):
print(line)
```
答案:
第1空:[^a-z\n]+