摘要: 返回: Python基础 索引页 这是一个读取系统当前时间的小例子: import datetime currenttime = datetime.datetime.now().strftime('%Y-%m-%d %H:%M:%S') print (currenttime) 运行结果: 2022- 阅读全文
posted @ 2022-03-01 22:49 健哥的数据花园 阅读(33) 评论(0) 推荐(0) 编辑
摘要: 返回: Python基础 索引页 下面的例子,读取一个名为 test.txt 的文件内容,并逐行打印。 test.txt 位于与我的python 程序同一个目录下,其内容为: This is line 1 This is line 2 我的程序如下: myfile = open('test.txt' 阅读全文
posted @ 2022-03-01 07:44 健哥的数据花园 阅读(1758) 评论(0) 推荐(0) 编辑