Python-如何将分隔符分隔的输入条目分开并在后面的代码中单独使用它们我

Python- How to separate input entries separated by delimiters and use them separately later in the code i

我收到这样的输入

x= (a:b)

我需要把a和b分开,在代码中单独使用

a = abc1*xyz1

b = abc2*xyz2

如何分隔两个或多个由“:”分隔的实体并在稍后的代码中单独使用它们?

如果作为字符串处理:

a = inputstring.split('(')[1].split(':')[0]
b = inputstrint.split(':')[1].split(')')[0]

这将根据提供的分隔符将值从字符串中拆分出来。