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

python之函数用法execfile()

时间:2015-11-07 18:53:21      阅读:209      评论:0      收藏:0      [点我收藏+]

标签:

# -*- coding: utf-8 -*-
#python 27
#xiaodeng
#python之函数用法execfile()



#execfile()
#说明:用来执行一个文件,相对于双击的效果
‘‘‘
execfile(...)
    execfile(filename[, globals[, locals]])
    filename:文件名
    globals:全局变量--这里指绝对路径
    locals:本地变量--这里指相对路径
    
    Read and execute a Python script from a file.
    The globals and locals are dictionaries, defaulting to the current
    globals and locals.  If only globals is given, locals defaults to it.
‘‘‘


#案例
#import chardet
filename=rmy.py
#print chardet.detect(filename)#ascii
#filename=r‘my.py‘.decode(‘ascii‘)
execfile(filename)

 

python之函数用法execfile()

标签:

原文地址:http://www.cnblogs.com/dengyg200891/p/4945723.html

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