python程序中可随时修改变量的值,而python始终记录变量的最新值。例子如下:
a="hello world!" #定义a的初始值为“hello world!” print(a) a="hello python!" #修改a的值为“hello python!” print(a)
运行结果为: