How do you add spaces inbetween letters python | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

How do you add spaces inbetween letters python

Input : Hello Output: H e l l o

24th May 2020, 10:49 PM
Gurseerit Singh Chahal ✓
Gurseerit Singh Chahal ✓ - avatar
3 Answers
+ 5
print(*input())
24th May 2020, 10:58 PM
HonFu
HonFu - avatar
+ 2
a="hello" print(" ".join(a))
24th May 2020, 10:51 PM
Abhay
Abhay - avatar
0
print(' '.join(input()))
24th May 2020, 10:53 PM
$¢𝐎₹𝔭!𝐨𝓝
$¢𝐎₹𝔭!𝐨𝓝 - avatar