>>> x = 1
>>> y = 2
>>> assert x == y, "not equals"

Traceback (most recent call last):
  File "<pyshell#2>", line 1, in <module>
    assert x == y, "not equals"
AssertionError: not equals
>>> 

 

相关文章:

  • 2021-11-06
  • 2021-10-20
  • 2022-01-08
  • 2021-11-06
  • 2021-12-27
  • 2021-06-27
  • 2021-11-02
  • 2021-07-28
猜你喜欢
  • 2021-11-06
  • 2022-02-13
  • 2021-04-08
  • 2021-09-21
相关资源
相似解决方案