Python遇到的一些小问题
程序员文章站
2024-03-19 22:23:10
...
一、Python代码延迟等待:
导入time模块,sleep中参数单位为秒
import time
print(“hello”)
time.sleep(1)
print(“world”)
二、printh换行:
默认print()自动换行
print("hello",end='')
加入end后就不换行
三、Python报错:UnboundLocalError: local variable x referenced before assignment
一般是变量引用时出现的问题,可以将全局变量作为参数传入函数中,也可以在使用变量前加上global声明。
#作为参数传入
def f(n):
f+=1
#声明global
def f:
global n
n+=1
Python报错ValueError: ‘c’ argument has 5 elements, which is inconsistent with ‘x’ and ‘y’ with size 4.
出现在绘图时,一般是因为color序列与节点个数不相符导致