Tengo el siguiente programa escrito en Python, pero deseo que las constantes que coloco al inicio, las pueda introducir desde Tkinter como si fuera un raw_input. Tengo el programa base escrito, coloco una parte.
Código:
import math import numpy import matplotlib.pyplot h = 0.1 # days transmission_coeff = 5e-9 # 1 / day persons latency_time = 1. # days infectious_time = 5. # days end_time = 60.0 # days num_steps = int(end_time / h) times = h * numpy.array(range(num_steps + 1))
El asunto es que me encantaria que un template que encontre usarlo como base pero no me esta corriendo, cuando lo pego a python y me gustaria que alguien me indicara o como hago un raw_input para mi programa de Python o como se arregla el siguiente código. para que desde ahi ya comience solo ha hacerle los arreglos, este codigo va como sigue...
Código:
De verdad agradezco cualquier ayuda from tkinter import * from tkinter import * def calculate(*args): try: value = float(feet.get()) meters.set((0.3048 * value * 10000.0 + 0.5)/10000.0) except ValueError: pass root = Tk() root.title("Feet to Meters") mainframe = ttk.Frame(root, padding="3 3 12 12") mainframe.grid(column=0, row=0, sticky=(N, W, E, S)) mainframe.columnconfigure(0, weight=1) mainframe.rowconfigure(0, weight=1) feet = StringVar() meters = StringVar() feet_entry = ttk.Entry(mainframe, width=7, textvariable=feet) feet_entry.grid(column=2, row=1, sticky=(W, E)) ttk.Label(mainframe, textvariable=meters).grid(column=2, row=2, sticky=(W, E)) ttk.Button(mainframe, text="Calculate", command=calculate).grid(column=3, row=3, sticky=W) ttk.Label(mainframe, text="feet").grid(column=3, row=1, sticky=W) ttk.Label(mainframe, text="is equivalent to").grid(column=1, row=2, sticky=E) ttk.Label(mainframe, text="meters").grid(column=3, row=2, sticky=W) for child in mainframe.winfo_children(): child.grid_configure(padx=5, pady=5) feet_entry.focus() root.bind('<Return>', calculate) root.mainloop()
Saludos
Santiago