PTT評價

[問卦] 要怎麼把字典的key幹到List的值?

看板Gossiping標題[問卦] 要怎麼把字典的key幹到List的值?作者
Superxixai
(洪粉吱已)
時間推噓 8 推:9 噓:1 →:8

小弟最近玩python有個問題,
假如有一個現成的字典,
dict ={0:’p’,1:’p’,2:’t’}
然後有個List=[[0,1,2],[1,2,0],[2,1,0]]
想要把dict 的key幹進去List,
讓他輸出成ppt,ptp,tpp ,
到底要怎麼寫啊?
文組自學請噴小力一點QQ

※ 授權方式: 創用 CC 姓名標示 4.0 國際 授權條款授權

--
https://imgur.com/wUA6XCb
https://imgur.com/kS5uTPw
https://imgur.com/TJsVv4W
https://imgur.com/UrTeunr
https://imgur.com/EZSXOkG
https://imgur.com/oZLw5t0

--

※ PTT 留言評論
※ 發信站: 批踢踢實業坊(ptt.cc), 來自: 42.76.31.68 (臺灣)

※ 文章網址:
https://www.ptt.cc/Gossiping/M.1640275689.A.8A5

Yude0109 12/24 00:08五樓被六樓幹到屁眼流湯

skevis 12/24 00:08哭R 這麼簡單還要問

sppmg 12/24 00:10 import ptt

linyuchuen 12/24 00:10list[0~2][0~2]

skevis 12/24 00:11而且你的List[1]是ppt 不是ptt

skevis 12/24 00:12說錯是List[0]

※ 編輯: Superxixai (42.76.31.68 臺灣), 12/24/2021 00:13:10

barry910543 12/24 00:17沒寫過python 但這就迴圈找map值而已

hackfox 12/24 00:17兩層的list comprehension

t81511270 12/24 00:18ppt 是 簡報ㄇ

guanj 12/24 00:18for i in List :

guanj 12/24 00:18 print(dict[0] + dict[1] + dict[2])

thelittleone 12/24 00:20Google python stack overflow

hybridpi 12/24 00:33[””.join( [dict[k] for k in item]

hybridpi 12/24 00:33)for item in list]

joygo 12/24 00:38用愛疼

Superxixai 12/24 00:43試出來惹,謝謝大家,原來那麼簡單,

Superxixai 12/24 00:43頭腦真的打結

how123480 12/24 01:15去stackoverflow問