Python Forum
[Tkinter] text edition in Text
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
[Tkinter] text edition in Text
#1
Hello
At the beginning I want show you what I want achieve.
I using tkinter: 2 text field and 1 button:
in the first text field I enter:
one
two
three
I press the button
The second field should show:
a:one
a:two
a:three
but unfortunately it appears:
a:one
two
three

it is my code:

import tkinter as tk
from tkinter import *

def OpenWindow():
    root = tk.Tk()
    root.geometry('400x250')
    return root

root = OpenWindow()

text1 = Text(root, width='12', height='10')
text1.place(x=20,y=20)


text2 = Text(root, width="12", height="10")
text2.place(x=240,y=20)

def click(): 
    text_input = text1.get("1.0", END)
    text2.delete(1.0, END)

    for i in text_input:
        row_word = ('a:' + text_input)

    text2.insert(1.0, row_word)
  
button_click = Button(root, text='add', command=click)
button_click.pack()

root.mainloop()
Thank you for help, I beginning my adventure with Python so maybe my question is tryvial...
Reply
#2
Your problem is test_input is one string, not three strings. Your function will have to split test_input into three strings, prepend "a:" to each string, and put the strings back together.

You can use str.split() for this if you know the delimiter and the delimiter is only used to separate words in the string. This is an example where words are separated by a space.
words = ('one two three').split(' ')  # Split string into words separated by a space
row_words = [f'a:{word}' for word in words]  # Prepend a: to each word
print(' '.join(row_words))  # Join the words together separated by a space
Output:
a:one a:two a:three
I think you will want to use newline ('\n') as the separator, and you might need to strip any trailing newline before splitting into words.
def click(): 
    text = text1.get("1.0", END).strip().split('\n')
    text2.insert(1.0, '\n'.join([f'a:{word}' for word in text]))
crook79 likes this post
Reply


Possibly Related Threads…
Thread Author Replies Views Last Post
  Transparent window background, but not text on it muzicman0 8 6,585 Feb-13-2025, 06:16 AM
Last Post: elonnmusk
  Trying to update label text using a grid button. Edward_ 7 1,492 Dec-18-2024, 03:05 AM
Last Post: Edward_
  [PyQt] Rotake rect, image or text at its center LavaCreeperKing 8 2,233 Oct-24-2024, 09:42 PM
Last Post: deanhystad
  [Tkinter] Text input OK on Windows, not working on linux Ota 3 1,147 Sep-19-2024, 12:02 AM
Last Post: Ota
  popup, text input with two readable buttons ethompson 7 1,876 Aug-28-2024, 03:40 AM
Last Post: deanhystad
  [PyQt] Populate QComboBox with "text" and "userData" from database. carecavoador 0 1,436 Jun-19-2024, 02:01 PM
Last Post: carecavoador
  update text variable on label with keypress knoxvilles_joker 5 7,504 May-31-2024, 02:09 PM
Last Post: menator01
  Button to +1 in text box everytime it's clicked martyloo 1 1,346 May-01-2024, 02:32 PM
Last Post: Axel_Erfurt
  [Kivy] Create a function to store text fields and drop downs selection in KivyMD floxia 0 2,685 Dec-18-2022, 04:34 AM
Last Post: floxia
  [Tkinter] Updating tkinter text BliepMonster 5 11,540 Nov-28-2022, 01:42 AM
Last Post: deanhystad

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020