+ 1
a=2020 b=" Navgurukul" c="meshuruhuatha". Output=Navgurukul 2020 me shuru hua tha
How we apply space in me shuru hua tha
2 Respostas
0
One you can use any character in c to split it up and then join it
0
# Python code for that will be like this
a, b, c = 2020, 'Navgurukul', 'me$shuru$hova$tha'
print(str(a), b, ' '.join(c.split('#x27;)))