摘要: 注:python3 *示例 >>> a = (1,2,3) >>> print(a) (1, 2, 3) >>> print(*a) 1 2 3 >>> >>> b = [1,2,3] >>> print(b) [1, 2, 3] >>> print(*b) 1 2 3 >>> >>> c = "1 阅读全文
posted @ 2021-12-13 09:40 jihite 阅读(232) 评论(0) 推荐(0) 编辑