我需要重写我的简单代码。我得到如下简单的字符串:
- 分发 ABC 1-2-x
- 分发 ABC DEF 1-2-x
- 分发 ABC DEF GHI 1-2-x
我要 .split() "Distrib" 之后的所有单词,并且我必须满足以下条件:
如果 string[0] 是文本 && string[1] 是整数,那么只加入这些以获得结果“ABC/1”
如果字符串 [0] 是文本 && 字符串 [1] 是文本,则仅加入它们,然后得到结果“ABC/DEF”
如果 string[0] is text && string[1] is text && string[2] is text 将它们全部连接并得到结果:“ABC/DEF/GHI”
我写了一个简单的代码来做到这一点,但我真的很感兴趣如何编写它不那么复杂和更易读;)
import re
def main_execute():
#input_text = "Distrib ABC 1-2-x"
#input_text = "Distrib ABC DEF 1-2-x"
#input_text = "Distrib ABC DEF GHI 1-2-x"
print(str(input_text))
load_data = re.search('\s[A-Z]*.[A-Z]*.[A-Z]+ [0-9]', input_text).group()
print("Pobrany ciąg znaków: " + load_data)
words_array = load_data.split()
if re.match('[0-9]', words_array[1]):
print("Złożony ciąg: "
+ words_array[0]
+ "/"
+ words_array[1])
elif re.match('[A-Z]', words_array[0]) and re.match('[A-Z]', words_array[1]) and re.match('[0-9]', words_array[2]):
print("Złożony ciąg: "
+ words_array[0]
+ "/"
+ words_array[1])
elif re.match('[A-Z]', words_array[0]) and re.match('[A-Z]', words_array[1]) and re.match('[A-Z]', words_array[2]) and re.match('[0-9]', words_array[3]):
print("Złożony ciąg: "
+ words_array[0]
+ "/"
+ words_array[1]
+ "/"
+ words_array[2])
if __name__ == "__main__":
main_execute()