标签: python dataframe
通过dataframe中的字符串,是否可以让用户知道双引号的数量是否不均匀?
dataframe
答案 0 :(得分:2)
x = '"""' print(x.count('"')%2==1)
输出:
True