用Python这个完整的小程序代码
```python
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
"""
A simple Python program for greeting user.
"""
name = input("Please enter your name: ") # take input from the user
print("Hello, " + name + "!") # print the output
```
免责声明:
以上内容除特别注明外均来源于网友提问,创作工场回答,未经许可,严谨转载。