0
How do I eliminate space(' ') between 2 objects while using ',' in print()
For ex print(2,3) Output:-2 3 What I want :- 23
3 Answers
+ 2
Amit Kumar , try this => print(2,3, sep = "")
0
TheWhÂĄteCat đ§đŹ thanks man
0
Amit Kumar , you are welcome.