我是python的新手,我只是想知道一种更改设置字符串变量的方法。
例如:
name ='school'
如果我想将名称变量用于George
,Ben
,Jess
,Katie
等其他值,我将如何更改此项? / p>
答案 0 :(得分:1)
您可以按照最初为其赋值的方式为变量分配新值:使用赋值运算符=
。
name = 'school'
print 'the current value of name is:', name
name = 'George'
print 'the current value of name is:', name
结果:
the current value of name is: school
the current value of name is: George