1. 使用`print`语句:
```python
print("Hello")
2. 使用`print`函数(Python 3.x版本):
```python
print("Hello")
3. 使用格式化输出:
```python
name = "Python"
print("Hello, {}".format(name))
4. 使用f-string(Python 3.6及以上版本):
```python
name = "Python"
print(f"Hello, {name}")
5. 使用`simple-hello-module`库(如果已安装):
```python
from simple_hello_module import hello
hello()
6. 在交互式Python环境中:
```python
>>> print("Hello")
Hello
7. 在Python脚本中:
```python
hello.py
print("Hello")
然后在命令行中运行:
```
python hello.py
以上方法都可以在Python中输出“Hello”