Pytest简介 Pytest is a mature full-featured Python testing tool that helps you write better programs.The pytest framework makes it easy to write small tests, yet scales to support complex functional testing for applications and libraries. 通过官方网站介绍我们可以了…
书接上回,我们继续来说说python的面试题,我在各个网站搜集了一些,我给予你们一个推荐的答案,你们可以组织成自己的语言来说出来,让我们更好的做到面向工资编程 一.Q:说说你对zen of python的理解,你有什么办法看到它. A:The Zen of Python是Python语言的指导原则,遵循这些基本原则,输入import this,然后直接运行即可 二.Q:什么是元类(meta_class) A:我们定义类来创建对象,但是现在我们知道类也是对象.那么是通过什么来创建类呢?答案就是元类…