2

私はPythonを初めて使用するので、多くの疑問があります。たとえば、次の文字列があります。

string = "xtpo, example1=x, example2, example3=thisValue"

たとえば、 と の等号の隣の値を取得することは可能example1ですexample3か? =?の後に続くものではなく、キーワードのみを知っています。

4

2 に答える 2

1

わかりやすくするために間隔をあける

>>> Sstring = "xtpo, example1=x, example2, example3=thisValue"
>>> items = Sstring.split(',') # Get the comma separated items
>>> for i in items:
...     Pair = i.split('=')  # Try splitting on =
...     if len(Pair) > 1:    # Did split
...         print Pair       # or whatever you would like to do
... 
[' example1', 'x']
[' example3', 'thisValue']
>>> 
于 2013-06-26T19:48:57.390 に答える