如何从raw_inpu中取得一句话后存入list,或者去掉其中的空格

如何从raw_inpu中取得一句话后存入list,或者去掉其中的空格

如题,谢谢。
因为简明手册中有个备份的例子,就是写一些备注到文件名里去
comment=raw_input('pls input some comment')

target=taeget_dir+time.strftime('%H%M%S')+comment+'.7z'

因为是在comment中有空格,只能写入第一个单词,可以不可以将输入的单词用 _  连接后再加进去呢?

想如果comment=[]

但是该怎么赋值才好呢,如果直接=的话,comment的类型就变为字符串了。
comment = comment.replace(" ","_")


[Copy to clipboard] [ - ]
CODE:
>>> comment = raw_input('pls input some comment: ').split()
pls input some comment: some comments here
>>> comment
['some', 'comments', 'here']

谢谢。