All public logs

Jump to navigation Jump to search

Combined display of all available logs of razwiki. You can narrow down the view by selecting a log type, the username (case-sensitive), or the affected page (also case-sensitive).

Logs
  • 01:12, 26 October 2024 Razzi talk contribs created page Blog: 2024-10-26 (Created page with "Here's my silly little quicktime event with tkinter <pre> import tkinter as tk from tkinter import ttk, PhotoImage # Create the main window root = tk.Tk() root.title("Image in Tkinter") root.geometry('600x600') # Load the image image = PhotoImage(file="trogdor.png") # Create a label to display the image image_label = tk.Label(root, image=image) image_label.pack() win = False def button_pressed(): win = True print('You stab the dragon in the neck and it die...")