示例#1
0
import hello

hello.print_func("Rashed")


示例#2
0
#!/usr/bin/python3
#Filename:test.py

#导入模块
import hello

hello.print_func('猪婆')
示例#3
0
#!/usr/bin/python

import hello
hello.print_func("Raj Uprade is working on New M&C")

示例#4
0
文件: module.py 项目: girijads/girija
#!/usr/bin/python

# Import module hello
import hello

# Now you can call defined function that module as follows
hello.print_func("Zara")
#!/usr/bin/python3
#coding:utf-8

import hello

if __name__ == '__main__':
    hello.print_func("你好")
示例#6
0
# Import hello module
import hello

# Call function
hello.world()

hello.print_func("Shri Ram")
示例#7
0
文件: libcall.py 项目: sumanta23/misc
#!/usr/bin/python

# Import module hello
import hello

# Now you can call defined function that module as follows
hello.print_func("EBA")