2012-08-22 32 views

回答

21

只要把方括號

>>> var_1 = "hello" 
>>> [var_1] 
['hello'] 
3

只需做到以下幾點:

var_1 = ['hello'] 
相關問題