python(输入输出)

python输入输出

在Python中,输入和输出的处理是通过内置函数 input() 和 print() 实现的。

  1. 使用 input() 获取用户输入:

name = input("请输入你的名字:")

print(f"你好,{name}!")

  1. 使用 print() 进行输出:

print("Hello, World!")

  1. 格式化输出:

name = "Alice"

age = 30

print(f"My name is {name} and I am {age} years old.")

  1. 写入文件:

with open('output.txt', 'w') as file:

file.write('Hello, World!\n')

  1. 从文件读取:

with open('output.txt', 'r') as file:

print(file.read())

  1. 将列表输出为逗号分隔的值 (CSV) 格式:

import csv

data = ['Name', 'Age', 'Job']

with open('output.csv', 'w') as file:

writer = csv.writer(file)

writer.writerows(data)

  1. 读取CSV文件:

 

import csv

with open('output.csv', 'r') as file:

reader = csv.reader(file)

for row in reader:

print(row)

以上是Python输入输出的基本用法和示例。根据需要,可以使用不同的内置函数和模块来处理不同类型的数据和文件。

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值