joining their elements together : Assign : Tuple PYTHON TUTORIALS


PYTHON TUTORIALS » Tuple » Assign »

 

joining their elements together


s = 'first'
s = s + ' second'
print s
t = ('third', 'fourth')
print t
t = t + ('fifth', 'sixth')
print t



Leave a Comment / Note


 
Verification is used to prevent unwanted posts (spam). .


PYTHON TUTORIALS

 Navioo Tuple
» Assign