Example #1
0
def importTest():
    # import a module 
    import hello2
    
    # and use it
    hello2.hello()
    
    pprint.pprint(sys.path)
Example #2
0
def importTest():
    # import a module
    import hello2

    # and use it
    hello2.hello()

    pprint.pprint(sys.path)
Example #3
0
import sys
import os
import hello
import hello2
import drawing
import drawing.colors
from drawing import shapes
import webbrowser


hello.hello()
print(hello.name)

print
hello2.hello()
print(hello2.name)

print
print('PI = ' + str(drawing.PI))


print

# sys.argv
print('sys.argv:')
for index, arg in enumerate(sys.argv):
    print('  ' + str(index) + ': ' + arg)

# sys.modules
print('\nsys.modules:')
Example #4
0
import sys
sys.path.append(
    "C:/Users/king-fly/.PyCharm2018.1/config/scratches/first_day/第10章-开箱即用/")
import hello2
hello2.hello()
Example #5
0
def hello():
    hello2.hello()
Example #6
0
# 10.1 模块:为了将代码可重用,请将其模块化!

# 10.1.1导入系统模块
import math

print math.sin(0)

# 10.1.2导入自己编写的模块
import sys

sys.path.append('E:\Python\练习\PythonBasis')

# 为什么这次没用了?因为导人模块并不意味着在导入时执行某些操作(比如打印文本)。它们主要用于定义,比如变量、函数和类等。此外,因为只需要定义这些东西一次,导人模块多次和导人一次的效果是一样的。
import hello2  #导入模块hello2

hello2.hello('函数--模块导入')

# 10.1.3让模块更可用

# 1将模块放到正确的位置
import sys, pprint

pprint.pprint(
    sys.path
)  #打印出的这些目录都可以存放模块,但是site-packages这个目录最佳,因为他就是用来做这些事情的。将模块放入到类似于这样的目录里,所有程序就都可以导入了

sys.path.append('D:\\Python27\\lib\\site-packages')
import site_hello

site_hello.hello('site-packages目录下的模块导入成功!!')