Welcome, Guest |
You have to register before you can post on our site.
|
Online Users |
There are currently 50 online users. » 0 Member(s) | 45 Guest(s) Google, Bing, AOL, Mojeek, AOL
|
|
|
function arguments |
Posted by: Curbie - Apr-29-2025, 01:44 AM - Forum: General Coding Help
- Replies (2)
|
 |
Are arguments passed to functions passed as data or a reference to data or does Python make that call behind the scenes?
curbie
|
|
|
Atari Ping Pong Game |
Posted by: Azdaghost - Apr-27-2025, 04:36 PM - Forum: Code sharing
- Replies (1)
|
 |
[python]import pygame
from random import randint
from math import sin, cos
pygame.init()
window = pygame.display.set_mode((800, 600))
keys = p..... More
|
|
|
not running |
Posted by: Azdaghost - Apr-27-2025, 04:08 PM - Forum: General Coding Help
- Replies (2)
|
 |
I'm making a ping pong game but for some reason the .frame functions aren't working
[python]import pygame
from random import randint
from math im..... More
|
|
|
Eight Queens Problem, error in printing list |
Posted by: snl_9527 - Apr-27-2025, 09:03 AM - Forum: General Coding Help
- Replies (10)
|
 |
[python]
import time , random
#eight_queen problem
board_sz = 15
direction = [(1,1),(-1,-1),(1,-1),(-1,1)]
data = [ [0 for _ in range(board_sz) ] for ..... More
|
|
|
errors |
Posted by: Azdaghost - Apr-26-2025, 04:15 PM - Forum: General Coding Help
- Replies (3)
|
 |
whenever I press 'W' it crashed without a error
whenever I turn, the tank moves massively
[python]import pygame
import math
window = pygame.disp..... More
|
|
|
not running |
Posted by: Azdaghost - Apr-23-2025, 01:25 PM - Forum: General Coding Help
- Replies (6)
|
 |
I'm trying to make my own language with the help of python,
but my code isn't running, why?!
main.py:
[python]script = open('script.jell', 'r').r..... More
|
|
|
|