python脚本示例
时间: 2024-08-13 22:05:12 浏览: 57
ros2脚本实例,shell脚本和python脚本示例
Python脚本示例通常用于执行特定任务,如数据处理、文件操作、网络请求等。这里是一个简单的Python脚本,用于打印"Hello, World!"到控制台:
```python
# 这是一个基本的Python脚本
def say_hello():
print("Hello, World!")
# 调用函数
say_hello()
```
这个例子中,定义了一个名为`say_hello`的函数,它执行的任务是打印一条消息。然后通过调用这个函数来实际运行它。
如果你想要一个具体的使用场景,比如从文件读取数据并进行简单处理,可以看下面的脚本:
```python
# 读取文件内容并统计单词数
def count_words(file_path):
with open(file_path, 'r') as file:
content = file.read().split()
return len(content)
# 使用脚本
file_to_analyze = "example.txt"
word_count = count_words(file_to_analyze)
print(f"The file '{file_to_analyze}' contains {word_count} words.")
```
阅读全文