Python更改字符串变量的值

时间:2014-10-28 17:10:33

标签: string python-2.7 variables setvalue

我是python的新手,我只是想知道一种更改设置字符串变量的方法。

例如:

name ='school'

如果我想将名称变量用于GeorgeBenJessKatie等其他值,我将如何更改此项? / p>

1 个答案:

答案 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