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 odpowiedzi
+ 2
Amit Kumar , try this => print(2,3, sep = "")
0
TheWh¡teCat 🇧🇬 thanks man
0
Amit Kumar , you are welcome.
For ex print(2,3) Output:-2 3 What I want :- 23