コード例 #1
0
ファイル: test.py プロジェクト: sandance/Algorithms
import hello

hello.print_func("Rashed")


コード例 #2
0
ファイル: test.py プロジェクト: GreasyPiglet/python3.6
#!/usr/bin/python3
#Filename:test.py

#导入模块
import hello

hello.print_func('猪婆')
コード例 #3
0
ファイル: print_hello.py プロジェクト: rajuprade/Python_Code
#!/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")
コード例 #5
0
#!/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")