Zee Man
@ZeeMan
Behold! The worst ever website! Maybe there is a worse one (https://www.theworldsworstwebsiteever.com/)
Update (August 29, 2020)
My "domain" is kegam
HTML, CSS, JS
I'm a beginner at graphics and could someone help me add a circle above the purple half that moves with keys a and d?
Python
mwilki7 you have to change the coordinates of the circle each time the loop passes
for event in pygame.event.get():
if event.type == pygame.QUIT:
pygame.quit()
quit()
if event.type == pygame.KEYDOWN:
if event.key == pygame.K_LEFT:
do stuff with left key
if event.key == pygame.K_RIGHT:
do stuff with right key
`3 years ago
I'm trying to create a new programming language in python called TrumpLang (it's fake). The for loop keeps giving errors. Help?
REQUIRES A BASIC UNDERSTANDING OF PYTHON. This helps make a simple text-based game.
Python
ZeeMan This is the format I used for my Text Adventure, which is not done and not posted yet.3 years ago