Python相当于Perls'警告'?

时间:2017-12-20 23:12:32

标签: python-3.x

我试图在python中编写一个非常简单的地址簿webapp。 我是python的新手但是在perl中有相当多的时间写作,我想知道什么是相同的perls' warn'函数在python 3.6。

1 个答案:

答案 0 :(得分:1)

如果您只是在寻找相应的警告,可以使用pythons warning模块,如下所示:

from warnings import warn

warn('Your message here', Warning)

这将在stderr上显示__main__:1: Warning: my message here

如果您只是在寻找相应的引发错误,可以使用pythons Exception类,如下所示:

raise Exception('Your message here')

这将在stderr上显示Exception: Your message here