Python-输入输出

基本输入输出

1、print函数输出数据到文件
打开一个文件供读取或写入,这个函数成功了会传回文件对象
函数的基本使用格式:
file_obj=open(file,mode=“r”)
file 用字符串列出欲打开的文件,mode打开文件的模式,file_obj是文件对象

file1=open("D:\python\Best1.txt",mode="w") 
# 如果print()函数里面包含 file=file1,是指将输出导向此对象
print("This is a nice day",file=file1)  ![在这里插入图片描述](https://img-blog.csdnimg.cn/cc1a004e28c24b3caeab657800d3dcb7.png#pic_center)

#不使用时需要关闭文件对象,才能返回查看结果
file1.close()  
file2=open("D:\python\Best2.txt",mode="a")
print("This is a nice day",file=file2)
file2.close()

2、数据输入input
input()函数会从屏幕读取用户从键盘输入的数据
value=input(“请输入你的名字”),所输入的数据会存储在此变量中,以字符串的类型存储起来。如果执行数学运算需要用int()函数转换为整数

3、小题狂做
一个小程序要求用户输入3位数数字,最后舍去个位数字输出,例如103,输出100

number=int(input("请输入三位数字"))
a=number//10  #除法运算中只保留整数部分
b=a*10
print(b)

在这里插入图片描述

你可能感兴趣的:(Python,python)