djfz-2020-s444344/TaskD01/run
Zofia Bączyk 2b6d459794 atempt 1
2020-12-02 23:21:09 +01:00

33 lines
810 B
Python

#!/usr/bin/python3
import sys
import re
def upperToLower(m):
temp=''
low=False
up=False
for l in str(m.group(0)):
if re.match(r'[A-ZĄĆĘŁŃÓŚŹŻ]',l):
low=True
if re.match(r'[a-ząćęłńóśźż]',l):
up=True
if re.match(r'.*[ÉÊĐ].*',m.group(0)):
up=False
if low==True and up==True:
for l in m.group(0):
if re.match(r'[A-ZĄĆĘŁŃÓŚŹŻ]',l):
temp+=l.lower()
elif re.match(r'[a-ząćęłńóśźż]',l):
temp+=l.upper()
else:
temp+=l
return str(temp)
else:
return str(m.group(0))
for line in sys.stdin.readlines():
temp=re.sub(r'\b\w+\b', upperToLower ,line)
print(temp.strip('\n'))