import tkinter as tkfrom tkinter import ttkimport matplotlib.pyplot as pltimport numpy as np# 그래프 그리는 함수def plot_exponential(): try: # 입력값을 받아와서 float으로 변환 base = float(base_entry.get()) coefficient = float(coefficient_entry.get()) # x 값 범위 설정 x = np.linspace(-10, 10, 400) # 지수 함수 y = coefficient * base^x y = coefficient * base ** x # 그래..