码迷,mamicode.com
首页 > 编程语言 > 详细

Python-常用库

时间:2019-04-21 14:17:51      阅读:95      评论:0      收藏:0      [点我收藏+]

标签:coding   import   imp   font   open   style   strftime   name   file   

import time
print time.strftime(‘%y-%m-%d %H:%M:%S‘,time.localtime())
19-04-21 13:03:08
# coding:utf-8
import os
print u‘当前文件的目录‘,os.path.dirname(__file__)
print u‘当前文件的上一级目录‘,os.path.dirname(os.path.dirname(__file__))
base_dir = os.path.dirname(os.path.dirname(__file__))
f = open(os.path.join(base_dir,‘Days/login‘),‘r‘)
print f.read()

Python-常用库

标签:coding   import   imp   font   open   style   strftime   name   file   

原文地址:https://www.cnblogs.com/hyzhang/p/10744895.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!