Gostaria de ler alguns caracteres de uma string e colocá-la em outra string (como fazemos em C).
Então, meu código é como abaixo
import string
import re
str = "Hello World"
j = 0
srr = ""
for i in str:
srr[j] = i #'str' object does not support item assignment
j = j + 1
print (srr)
Em C, o código pode ser
i = j = 0;
while(str[i] != '\0')
{
srr[j++] = str [i++];
}
Como posso implementar o mesmo em Python?
str
como variável aqui, não poderá fazer conversões de stringstr(var_that_is_not_a_string)
nem comparar comparações comotype(var_with_unknown_type) == str
.