im triying to print horizontally
Text="Si ya conoces Colab, echa un vistazo a este vídeo para obtener información sobre las tablas interactivas"
List= [31,43,15,5,26,32,6,1,3,62,62,62,62,62,62]
for x in List:
print (Text[x])
Result
s
o
u
t
c
i
y
And i Wanted
s o u t c i y
nor do I want to do it like this:
print(Text[31],Text[43],Text[15],Text[5],Text[26],Text[32],Text[6],Text[1],Text[3],Text[62],Text[62],Text[62],Text[62],Text[62],Text[62])