我有一个从qt设计器设置值为“a”的按钮,我也可以看到字符串属性在xml中有“a”。
words_cleaned = [" ".join([
words for words in sentence.split()
if not ('https' in words or words.startswith('@'))])
for sentence in res]
当我做的时候
<widget class="QPushButton" name="button_a">
<property name="text">
<string>a</string>
</property>
</widget>
str的值变为“&amp; a”而不仅仅是“a”
但是,如果我将其更改为“=”或“/”或其他符号,则不会看到“&amp;”前缀。
什么可能导致不必要的“&amp;”出现?