** In need to read input data from Tkinter Lable and use that for further processing. But to simplify this question, I need to Enter a Ticker symbol into label and get that ticker using .get() method and use it into other Entry. Followed is the code.
from tkinter import *
top = Tk()
top.title("NASDAR Stock price range prediction system")
top.geometry("1350x750")
#user input Are
user_name = Label(top, text = "Ticker").place(x = 30,y = 60)
user_name_input_area = Entry(top, width = 20)
user_name_input_area.place(x = 125,y = 60)
you_entered = Label(top, text = "You entered").place(x = 30,y = 85)
you_entered_input_area = Entry(top, width = 20).place(x = 125,y = 85)
daily_analysis = Button(top,text = "Daily Analysis", command=insert_data1)
intraday_analysis = Button(top,text = "Intraday Analysis").place(x = 330,y = 670)
def insert_data1():
print("You enterted followed symbol")
symbol = str(user_name_input_area.get())
print(symbol)
you_entered.insert(0, symbol)
top.mainloop()
** I would like to see the input of Label Ticker into Entry of 'You entered'