Python/Lab_3/lab3_2.py

13 lines
470 B
Python
Raw Normal View History

2024-03-09 17:38:18 +02:00
inp = bytes(input("Введіть вашу послідовність: "), encoding="utf-8")
if not inp:
print("Ви ввели пусту послідовність, спробуйте ще раз.")
exit()
inp = inp.replace(b"<#s>", b"<#>")
inp = inp.replace(b"<#S>", b"<#>")
inp = inp.replace(b"<S>", b"<#s>")
inp = inp.replace(b"<s>", b"<#s>")
print("Ваша послідовність після редагування: {}".format(inp.decode("utf-8")))