Skip to content

Instantly share code, notes, and snippets.

View Techwizz-somboo's full-sized avatar

Paul Black Techwizz-somboo

View GitHub Profile
@Techwizz-somboo
Techwizz-somboo / space_test_flight.py
Created February 27, 2022 20:52
SPACE_TEST_FLIGHT
from math import *
from random import *
from kandinsky import *
from ion import *
from time import *
class Snake:
def __init__(self):
self.body=[[0,0]]
self.add=4
self.dir=(1,0)
self.cherry=(0,0)
from math import *