Exemple #1
0
import hello

hello.print_func("Rashed")


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

#导入模块
import hello

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

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

Exemple #4
0
#!/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("你好")
Exemple #6
0
# Import hello module
import hello

# Call function
hello.world()

hello.print_func("Shri Ram")
Exemple #7
0
#!/usr/bin/python

# Import module hello
import hello

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