标签: python-3.x
试图在python 3.7版系统中编写一个简单的函数既没有给出任何错误,也没有给出任何输出。
def say_hello(): print('Hello user') say_hello()
答案 0 :(得分:1)
Python对代码块(函数的主体,循环等)使用缩进,即,它以缩进开始,以第一条未缩进的行结束。 因此,您的方法调用位于方法定义内部,因为它甚至没有在代码下打印任何输出即可解决您的问题。
hashOperations.entries("users")