Answers for "how to print a sentence without space in python 3"

1

how to print without space in python 3

>>> print("a","b","c")
a b c
>>> print("a","b","c",sep="")
abc
Posted by: Guest on April-28-2020
3

how to print values without space in python

x = 10
print ('The number of mangoes I have are "%d"' %x )
Posted by: Guest on November-19-2021

Code answers related to "how to print a sentence without space in python 3"

Python Answers by Framework

Browse Popular Code Answers by Language