摘要: Python 获取当前时间 本文中,您将学习获取语言环境的当前时间以及Python中的不同时区。 您可以采用多种方法获取Python当前时间。 示例1:使用datetime对象的当前时间 from datetime import datetime now = datetime.now() curre 阅读全文
posted @ 2024-01-03 21:02 txwtech 阅读(96) 评论(0) 推荐(0) 编辑
摘要: Python Global 关键字 全局关键字简介 在Python中,global关键字允许您在当前作用域之外修改变量。它用于创建全局变量并在局部上下文中对该变量进行更改。 全局关键字规则 Python中global关键字的基本规则是: 当我们在函数内部创建变量时,默认情况下它是局部的。 当我们在函 阅读全文
posted @ 2024-01-03 20:58 txwtech 阅读(50) 评论(0) 推荐(0) 编辑
摘要: Python range() 使用方法及示例 range(start, stop[, step]) 中括号含义:[,step]是第三个参数,可选项 参考 range()参数 range()主要采用三个在两个定义中具有相同用法的参数: start -整数,从该整数开始返回整数序列 stop-要返回整数 阅读全文
posted @ 2024-01-03 20:52 txwtech 阅读(53) 评论(0) 推荐(0) 编辑
摘要: 42.python json模块字符串操作_读取写入文件_对象转json字符串转对象相互转换 # This is a sample Python script. # Press Shift+F10 to execute it or replace it with your code. # Press 阅读全文
posted @ 2024-01-03 13:35 txwtech 阅读(21) 评论(0) 推荐(0) 编辑
摘要: python shelve模块写入dat文件保存数据库 # This is a sample Python script. # Press Shift+F10 to execute it or replace it with your code. # Press Double Shift to se 阅读全文
posted @ 2024-01-03 11:19 txwtech 阅读(25) 评论(0) 推荐(0) 编辑
摘要: python堆、集合、双端队列 # This is a sample Python script. # 1# 1 # 2# 2 # Press Shift+F10 to execute it or replace it with your code.# 3# 3 # Press Double Shi 阅读全文
posted @ 2024-01-03 10:28 txwtech 阅读(3) 评论(0) 推荐(0) 编辑
摘要: 39.python list列表的操作 if __name__ == '__main__': #13#13 #print_hi('PyCharm') #14#14 import fileinput #15#15 #for line in fileinput.input(inplace=True): 阅读全文
posted @ 2024-01-03 09:13 txwtech 阅读(4) 评论(0) 推荐(0) 编辑
摘要: # This is a sample Python script. # Press Shift+F10 to execute it or replace it with your code. # Press Double Shift to search everywhere for classes, 阅读全文
posted @ 2024-01-03 08:40 txwtech 阅读(4) 评论(0) 推荐(0) 编辑