import hello hello.print_func("Rashed")
#!/usr/bin/python3 #Filename:test.py #导入模块 import hello hello.print_func('猪婆')
#!/usr/bin/python import hello hello.print_func("Raj Uprade is working on New M&C")
#!/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("你好")
# Import hello module import hello # Call function hello.world() hello.print_func("Shri Ram")
#!/usr/bin/python # Import module hello import hello # Now you can call defined function that module as follows hello.print_func("EBA")