ch 6 string concatenation
first_name="ankit"
last_name="kuswaha"
#add the full name
full_name=first_name+last_name
print(full_name)
string can use another string
print(full_name+"3") we can use calculator command it can print the name 3 times
pritnt(full_name+"*4")
Comments
Post a Comment