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 as pg | |
import sys, os, random | |
pg.init() | |
w = 600 | |
h = 800 | |
res = (w, h) | |
fontname = "/storage/emulated/0/fonts/clacon.ttf" | |
sndpath = "/storage/emulated/0/sfx/test.mp3" | |
efn = os.path.basename(sndpath[:-4]) |
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
from os import system | |
""" | |
Writed by: Zephio | |
Create Simple Table | |
Lang: Python 3.xx | |
""" | |
brd = u'\u2593' | |
spr = '=' * 34 |
OlderNewer