0
Help needed for coding
I want to write a code which take all the elements of the input separately like Sololearn be placed in separate cells as S O L O L E A R N
2 Respuestas
0
var str = "SOLOLEARN";
for(i=0;i<str.length;i++){
console.log(str[i]);
}
This can help u
0
python:
for i in "SOLOLEARN":
print(i, " ")