在Python中,你可以使用for循環遍歷字符串中的每個字符并輸出。這里有一個例子:
for
string = "Hello, World!" for char in string: print(char)
這段代碼將會逐個輸出字符串"Hello, World!"中的每個字符。每個字符都會單獨輸出一行。如果你想要在同一行輸出所有字符,可以將print(char)改為print(char, end='')。這樣,end=''參數會讓每次輸出后不換行。
print(char)
print(char, end='')
end=''
億速云公眾號
手機網站二維碼
Copyright ? Yisu Cloud Ltd. All Rights Reserved. 2018 版權所有
廣州億速云計算有限公司粵ICP備17096448號-1 粵公網安備 44010402001142號增值電信業務經營許可證編號:B1-20181529