运行 ❯
获取
你自己的 Python
服务器
×
更改方向
更改主题,暗色/亮色
前往 Spaces
list1 = ["apple", "banana", "cherry"] list2 = [1, 5, 7, 9, 3] list3 = [True, False, False] print(list1) print(list2) print(list3)
['apple', 'banana', 'cherry'] [1, 5, 7, 9, 3] [True, False, False]