How do you add spaces inbetween letters python | Sololearn: Learn to code for FREE!
Novo curso! Todo programador deveria aprender IA generativa!
Experimente uma aula grƔtis
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 Respostas
+ 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