2020年3月30日
摘要: ## 用for循环遍历A = {'1','2','star'} for item in A: print(item,end='') ## 用while循环遍历A = {'1','2','star'} try: while True: print(A.pop(),end='') except: pas 阅读全文
posted @ 2020-03-30 22:45 BillGates-- 阅读(8590) 评论(0) 推荐(0)