首页 新闻 赞助 找找看
2
回答数

已解决问题 10 python变量作用域问题

text1 = "Hello" list1 = [] def changeText(): text1 = "world!" def changeList(): list1.append("A") li