python如何故意留下缩进行空白?

python如何故意留下缩进行空白?,第1张

概述for line in sys.stdin: line = line.strip() uid, profile = line.split('\t') try: process(profile) except: # do nothing and skip this profile 我想跳过所有抛出异常的配置文件.但是python给了我
for line in sys.stdin:    line = line.strip()    uID,profile = line.split('\t')    try:        process(profile)    except:        # do nothing and skip this profile

我想跳过所有抛出异常的配置文件.但是python给了我

IndentationError: expected an indented block

在“#什么都不做,跳过这个配置文件”这一行.

我怎么告诉python什么都不做?

解决方法 Python“nop”是 pass

...except:    pass

也就是说,从不使用裸露的条款.他们捕获的东西就像你几乎绝对不想自己处理的KeyboardInterrupt.如果没有什么特定的,你可以捕捉,除了例外

总结

以上是内存溢出为你收集整理的python如何故意留下缩进行空白?全部内容,希望文章能够帮你解决python如何故意留下缩进行空白?所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/langs/1193086.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-06-03
下一篇 2022-06-03

发表评论

登录后才能评论

评论列表(0条)

保存