我已經創建了一個程序,該程序從與該主題相關的文本文檔導入的列表中選擇隨機項。食物中的食物包含披薩,意大利麪和漢堡。但是,當打印出結果時,所選項目會有括號,方括號和語音標記。我將如何刪除它們?Python嵌套列表支架刪除
things_to_do=[
("eat", [(foods[randint(0,20)])]),
("do", [(sports[randint(0,60)])]),
("drink a",[(coffees[randint(0,20)])])]
print "Whilst in town you decided to " + str(things_to_do[randint(0,2)])]
使用'replace()'方法。 (「(」,「」) – smoggers
閱讀有關如何創建[最小,完整,可驗證示例](https://stackoverflow.com/help/mcve)。 –