iT邦幫忙

0

python 字串轉成列表格式問題

  • 分享至 

  • xImage

python新手請教一個問題,如何將下列 列表的輸出結果調整成和字串的輸出結果一樣(分成兩行)謝謝

輸入:
a="hello"+"\n"+"world"

print(a) #列印字串
print("----------")
print([a])#列印列表

輸出:

hello
world

['hello\nworld']

froce iT邦大師 1 級 ‧ 2024-05-10 10:25:40 檢舉
不懂你的目的是要幹嘛。
不過list中的a取出來後列印一樣會有換行,要不然就是用split產生出a分割後的list
https://www.freecodecamp.org/chinese/news/how-to-split-a-string-in-python/
ccutmis iT邦高手 2 級 ‧ 2024-05-10 13:51:51 檢舉
# 這樣可以嗎?
print(a[:])
圖片
  直播研討會
圖片
{{ item.channelVendor }} {{ item.webinarstarted }} |
{{ formatDate(item.duration) }}
直播中

尚未有邦友回答

立即登入回答