吾爱破解 - 52pojie.cn

 找回密码
 注册[Register]

QQ登录

只需一步,快速开始

查看: 500|回复: 5
收起左侧

[求助] 这段代码输入python编译器里面显示错误,不知道哪里出现了问题

[复制链接]
火焰之源 发表于 2023-10-4 23:50

import os
import glob

folder_path = 'C:/Users/2546028300/Desktop/新建文件夹 (2)'
line_number = 7

with open('output.txt', 'w') as outfile:
for filename in glob.glob(os.path.join(folder_path, '*.txt')):
with open(filename, 'r') as infile:
line = infile.readlines()[line_number - 1]
outfile.write(line)

SyntaxError: multiple statements found while compiling a single statement



发帖前要善用论坛搜索功能,那里可能会有你要找的答案或者已经有人发布过相同内容了,请勿重复发帖。

qqhsx 发表于 2023-10-5 11:37
尝试修复你的代码的缩进
qq499414099 发表于 2023-10-5 11:40
由于代码缩进不正确,导致Python解释器不能正确地解析代码块,for循环和with语句的代码块都需要缩进,这样才能让Python解释器正确的解析
import os  
import glob  
  
folder_path = 'C:/Users/2546028300/Desktop/新建文件夹 (2)'  
line_number = 7  
  
with open('output.txt', 'w') as outfile:  
    for filename in glob.glob(os.path.join(folder_path, '*.txt')):  
        with open(filename, 'r') as infile:  
            line = infile.readlines()[line_number - 1]  
            outfile.write(line)

免费评分

参与人数 2吾爱币 +2 热心值 +2 收起 理由
火焰之源 + 1 + 1 谢谢@Thanks!
sunning-H-C + 1 + 1 谢谢@Thanks!

查看全部评分

aonima 发表于 2023-10-5 12:07
 楼主| 火焰之源 发表于 2023-10-5 15:51
qq499414099 发表于 2023-10-5 11:40
由于代码缩进不正确,导致Python解释器不能正确地解析代码块,for循环和with语句的代码块都需要缩进,这样 ...

非常感谢
七夕的乌鸦 发表于 2023-10-5 16:04
用文心一言差不多就能解决你的问题。
微信截图_20231005160353.png
您需要登录后才可以回帖 登录 | 注册[Register]

本版积分规则

返回列表

RSS订阅|小黑屋|处罚记录|联系我们|吾爱破解 - LCG - LSG ( 京ICP备16042023号 | 京公网安备 11010502030087号 )

GMT+8, 2024-11-24 19:40

Powered by Discuz!

Copyright © 2001-2020, Tencent Cloud.

快速回复 返回顶部 返回列表