These days, you'd use format instead: "{} {} {}".format(*lst) #python 2.7 and newer "{0} {1} {2}".format(*lst) #python 2.6 and newer.
確定! 回上一頁