摘要:
list、tuple、set、dict区别 参考: "python的列表,字典,元组,集合的区别和各自使用方法" 遍历set 由于set也是一个集合,所以,遍历set和遍历list类似,都可以通过for循环实现 直接用for循环遍历set中的元素 阅读全文
摘要:
参数详解: param values: object print(value, ..., sep=' ', end='\n', file=sys.stdout, flush=False) Prints the values to a stream, or to sys.stdout by defau 阅读全文