我有一個程序可以計算並打印包含特定字符(忽略大小寫)的句子中的所有單詞。如何刪除python輸出結尾的空格?
代碼在Python -
item=input()
ip=input().tolower()
r=ip.count(item)
print(r)
ip=ip.split()
for word in ip:
if item in word:
print((word), end=' ')
這個程序工作正常,但在最後一個字是打印的,我不想以後成爲一個空白。
如果有人可以指導我如何刪除空間,將不勝感激。
請複製(Ctrl-C)並粘貼(Ctrl-V)您的代碼並輸出到您的問題中。 – jambrothers
RTFM ['join'](https://docs.python.org/2/library/stdtypes.html?highlight=join#str.join) –