Python报错——错误“AttributeError:'builtin_function_or_method' object has no attribute 'sleep'”

Python笔记——错误“AttributeError:’builtin_function_or_method’ object has no attribute ‘sleep’”

python编程,才使用time.sleep(n)挂起函数时遇到这个错误

原因:使用引入是 from time import *

解决:引入换成 import time

你可能感兴趣的:(Python报错,python,函数)