Tags
python
Asked 2 years ago
13 Aug 2021
Views 202
Janice

Janice posted

How do you concatenate 3 strings in Python ?

How do you concatenate 3 strings in Python ?
iptracker

iptracker
answered Oct 8 '21 00:00

its very simple to concatenate 3 strings in Python


d="Python "
a=" have  "
t=" concatenate."
print(d+a+t)

it will print "Python have concatenate."
hope it help !
Post Answer