gpt4 book ai didi

python - 为什么空闲会跳过 f = open ('filename' , 'r' )

转载 作者:太空宇宙 更新时间:2023-11-04 06:04:26 24 4
gpt4 key购买 nike

我正在用 python 编写一个程序,但在空闲时读取文件时遇到问题。如果我使用不正确的语法,它会告诉我,因此编译器会读取它,但不会为用户打印它。任何帮助,将不胜感激。这是我的代码。

#! python3.5.2

import sys

if input() == ('im bored'):
print('What season is it?')
if input() == ('summer'):
f = open('callfilesummer.txt', 'r')

最佳答案

您只将文件放入变量“f”中,因此您需要读取它或以某种方式使用它来显示它。

import sys

if input() == ('im bored'):
print('What season is it?')
if input() == ('summer'):
f = open('callfilesummer.txt', 'r')
print f.read()
f.close()

您可以在此 http://www.tutorialspoint.com/python/python_files_io.htm 上找到更多处理文件的方法

关于python - 为什么空闲会跳过 f = open ('filename' , 'r' ),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38378090/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com