| Total Complexity | 0 |
| Total Lines | 12 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | import tkinter as tk |
||
| 2 | from tkinter import Label |
||
| 3 | |||
| 4 | root = tk.Tk() |
||
| 5 | root.geometry("200x400+1040+100") |
||
| 6 | root.resizable(0,0) |
||
| 7 | |||
| 8 | with open("pywhatkit_history.txt", "r") as f: |
||
| 9 | lb = Label(root, text=f.read()).pack() |
||
| 10 | |||
| 11 | root.mainloop() |
||
| 12 |