This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import tkinter as tk | |
| from tkinter import filedialog, messagebox, ttk | |
| import ttkbootstrap as tb | |
| from ttkbootstrap.scrolled import ScrolledText | |
| from ttkbootstrap.constants import * | |
| import os | |
| import sqlite3 | |
| import bcrypt | |
| import re |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import pygame | |
| import random | |
| # Initialize pygame | |
| pygame.init() | |
| # Screen settings | |
| width = 800 | |
| height = 600 | |
| screen = pygame.display.set_mode((width, height)) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import pygame | |
| import random | |
| # Inicjalizacja pygame | |
| pygame.init() | |
| # Ustawienia ekranu | |
| szerokosc = 800 | |
| wysokosc = 600 | |
| ekran = pygame.display.set_mode((szerokosc, wysokosc)) |