如何刪除python中的字符串中的特定空白字符。刪除python中的字符串中的空格和製表符
我的輸入字符串是:,
str1 = """vendor_id\t: GenuineIntel
cpu family\t: 6
model\t\t: 58
model name\t: Intel(R) Core(TM) i3-3120M CPU @ 2.50GHz
stepping\t: 9
cpu MHz\t\t: 2485.659
cache size\t: 6144 KB
fpu\t\t: yes
fpu_exception\t: yes
cpuid level\t: 5
wp\t\t: yes"""
我所需的輸出是:
>>>print str1
vendor_id: GenuineIntel
cpu family: 6
model: 58
model name: Intel(R) Core(TM) i3-3120M CPU @ 2.50GHz
stepping: 9
cpu MHz: 2485.659
cache size: 6144 KB
fpu: yes
fpu_exception: yes
cpuid level: 5
wp: yes
你確定你的輸出字符串沒有任何空間了。 –
我編輯了你的示例a)是有效的Python,b)用'\ t'字符替換它中現有的選項卡,因爲這是重要的,但是不可見。如果可以的話,請使用'print repr(str1)'向我們展示*真正*的內容。 –