How do I get " print(a,',',b) to display "a, b" not "a , b" | Sololearn: Learn to code for FREE!
Новый курс! Каждый программист должен знать генеративный ИИ!
Попробуйте бесплатный урок
0

How do I get " print(a,',',b) to display "a, b" not "a , b"

10th Jan 2017, 2:27 AM
Stephen Younglove
Stephen Younglove - avatar
3 ответов
0
print (str (a)+',',b)
10th Jan 2017, 3:20 AM
Stephen Younglove
Stephen Younglove - avatar
0
print(a+,+b);
10th Jan 2017, 5:11 AM
Jonty Bamrah
0
print (a+', '+b)
10th Jan 2017, 5:46 AM
Stephen Younglove
Stephen Younglove - avatar