0

我有以下形式的数据

str = '"A,B,C,Be,F,Sa,Su"' # where str[1]='M' and str[2]=','

我想找到if "mystring" in str:。其中 mystring 是 M、T、W 或 Th 等等。

但是,我只想要特定的字符串。即if "S" in str:输出应该是无。并且if "B" in str:应该只是“B”而不是“Be”

4

1 回答 1

3
>>> text = '"A,B,C,Be,F,Sa,Su"'
>>> 'A' in text.strip('"').split(',')
True
>>> 'S' in text.strip('"').split(',')
False
于 2013-03-23T14:08:04.623 回答