我需要反转这些内容,这些内容可以通过启动程序来实现。 例如:
$ python1.py ['force', 'the', 'Feel']
我需要得到:感受力量
我已尝试过该代码:
import sys
n = (sys.argv[1:])
print ' '.join(n[::-1])
但它并没有像我希望的那样奏效。它保存所有逗号等
答案 0 :(得分:0)
$ python1.py ['force', 'the', 'Feel']
我需要得到:感受力量
from sys import argv
from ast import literal_eval
list_ = literal_eval(' '.join(argv[1:]))
print ' '.join(reversed(list_))