The use of a variable : String Variables « String « Python






The use of a variable

The use of a variable
 


name = "Larry"

print name

print "Hi, " + name


           
         
  








Related examples in the same category

1.strings can be expressed in several ways.