Esta pergunta pode já ter sido respondida, mas depois de muito tempo pesquisando no SO e na rede não encontrei uma resposta adequada.
Eu tenho 3 loops consecutivos da seguinte forma:
w = my_text0.get(1.0, END).split()
data = []
# get & set the matching dict keys and values
for i in w:
if i in [*dictionary]:
word = i.title()
my_text.insert(END, word)
my_text.insert(END, ", " + dictionary[i] + "\n")
keys_len = len(word)
print("keys_len", keys_len)
data.append(keys_len)
print("data", data)
# print("keys_len", keys_len)
# get text widget lines count
txtwidg_lnescnt = int(my_text.index("end-1c").split(".")[0])
for j in range(0, len(data)):
k_l = data[j]
print("k_l", k_l)
print("k_l out", k_l)
# get index start and end for tag_add method
for k in range(1, txtwidg_lnescnt):
lne_idx = k
str_idx = f"{lne_idx}.0"
end_idx = f"{lne_idx}.{k_l}"
print("end_idx", end_idx)
my_text.tag_add("start", str_idx, end_idx)
my_text.tag_config(
"start",
background="red",
foreground="black",
font=bdfont,
)
Preciso que os k_l
valores do 2nd loop
sejam processados no arquivo 3rd loop
. Mas atualmente apenas o último valor (9)
de 2nd loop
é processado.
Aqui está a saída que estou obtendo:
keys_len 5
keys_len 6
keys_len 9
data [5, 6, 9]
k_l 5
k_l 6
k_l 9
k_l out 9
end_idx 1.9
end_idx 2.9
end_idx 3.9
Eu preciso assim:
keys_len 5
keys_len 6
keys_len 9
data [5, 6, 9]
k_l 5
k_l 6
k_l 9
k_l out 9
end_idx 1.5
end_idx 2.6
end_idx 3.9
Estou familiarizado com o método append to an empty list method
para armazenar todos os valores de um loop.
Mas não posso repetir aqui porque já foi feito no 1st loop
.
Também tentei usar o return from a separate function method
mas ele gera um loop aninhado e não é disso que preciso:
def mykeyslengths():
# get the user's entered words
w = my_text0.get(1.0, END).split()
data = []
# get & set the matching dict keys and values
for i in w:
word = i
keys_len = len(word)
print("keys_lenzz", keys_len)
data.append(keys_len)
for j in range(0, len(data)):
k_l = data[j]
print("k_l", k_l)
return k_l
def generate():
# Clear The text
my_text.delete(1.0, END)
# get the user's entered words
w = my_text0.get(1.0, END).split()
# data = []
# get & set the matching dict keys and values
for i in w:
if i in [*dictionary]:
word = i.title()
my_text.insert(END, word)
my_text.insert(END, ", " + dictionary[i] + "\n")
# keys_len = len(word)
# print("keys_len", keys_len)
# data.append(keys_len)
# print("data", data)
# print("keys_len", keys_len)
# get text widget lines count
txtwidg_lnescnt = int(my_text.index("end-1c").split(".")[0])
# for j in range(0, len(data)):
# k_l = data[j]
# print("k_l", k_l)
# print("k_l out", k_l)
# get index start and end for tag_add method
for k in range(1, txtwidg_lnescnt):
lne_idx = k
str_idx = f"{lne_idx}.0"
end_idx = f"{lne_idx}.{mykeyslengths()}"
print("end_idx", end_idx)
my_text.tag_add("start", str_idx, end_idx)
my_text.tag_config(
"start",
background="red",
foreground="black",
font=bdfont,
)
Qual saída é esta:
keys_lenzz 5
keys_lenzz 6
keys_lenzz 9
k_l 5
k_l 6
k_l 9
end_idx 1.9
keys_lenzz 5
keys_lenzz 6
keys_lenzz 9
k_l 5
k_l 6
k_l 9
end_idx 2.9
keys_lenzz 5
keys_lenzz 6
keys_lenzz 9
k_l 5
k_l 6
k_l 9
end_idx 3.9
Se isso não ficou claro nos exemplos, preciso dos comprimentos 5, 6, 9
e bold
modificar os comprimentos backgrounds
e foregrounds
dos respectivos substrings determinados pelos end_idx
valores da variável com uma tkinter
tag_add
propriedade de índice final.
O problema que recebo atualmente é que todas as 3 substrings (as chaves do dicionário) têm o mesmo comprimento (9), embora todas devam ser distintas de acordo com seus respectivos comprimentos (5, 6, 9).
Isso deve funcionar: