Skip to content Skip to sidebar Skip to footer
Showing posts with the label 2d

Trying To Make Screen Center To Player In Pygame Simple 2D Platformer

I am creating a simple 2D platformer in Pygame. In this project I have been trying to use classes m… Read more Trying To Make Screen Center To Player In Pygame Simple 2D Platformer

How To Transpose A 2D List Array Using Loops In Python?

Say I have: a = [[1, 1, 1, 6], [0, 2, -1, 3], [4, 0, 10, 42]] and I want to transpose it to: a = [… Read more How To Transpose A 2D List Array Using Loops In Python?