import numpy as npimport matplotlib.pyplot as pltfrom matplotlib.backends.backend_tkagg import FigureCanvasTkAggimport tkinter as tkfrom tkinter import ttkclass TangentPlotterApp: def __init__(self, root): self.root = root self.root.title("탄젠트 함수 그래프") # 입력 필드 및 레이블 self.label = tk.Label(root, text="그래프의 주기를 조정할 상수를 입력하세요:") self.label.pack(padx=10, pady=5) ..