How to print all values in a same line in Python? All Questions › Category: Python › How to print all values in a same line in Python? 0 Vote Up Vote Down Chetan Shidling asked 4 years ago I need short information. 1 Answers 0 Vote Up Vote Down chetan shidling answered 4 years ago By using this, print(“chetan” ,end=” “) print(” shidling”,end=” “) The output will be – chetan Shidling By using this you can print value in a same line.