Python Forum
How to find the location of an object and object at a given location?
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
How to find the location of an object and object at a given location?
#13
Basic.
from random import choice

def generate_chunk():
    chunk = []
    
    for x in xrange(16):
        chunk.append([])
        for y in xrange(16):
            chunk[x].append([])
            for z in xrange(16):
                chunk[x][y].append(choice([1,2,3,4,5]))
    
    return chunk
                
    
def main():
    data = generate_chunk()
    print data[0][0]
    print data[4][5][3]
    
main()
99 percent of computer problems exists between chair and keyboard.
Reply


Messages In This Thread
RE: How to find the location of an object and object at a given location? - by Windspar - Jan-30-2017, 02:40 PM

Possibly Related Threads…
Thread Author Replies Views Last Post
  [PyGame] Rect object penetrates wall on one side Jan_97 4 2,694 Dec-30-2021, 11:08 PM
Last Post: Jan_97
  [PyGame] object has no attribute 'add_internal' djwilson0495 7 8,280 Feb-26-2021, 05:06 PM
Last Post: nilamo
  Location of the objects that are moving rturus 1 2,201 Feb-01-2021, 05:44 PM
Last Post: nilamo
  [PyGame] why the position of the object is different? syafiq14 1 1,990 Nov-24-2020, 03:22 PM
Last Post: metulburr
  [PyGame] object's movement to left leave shadow on the screen Zhaleh 3 3,266 Aug-02-2020, 09:59 PM
Last Post: nilamo
  I can't control the speed of the turtle object Hesper 1 2,642 Apr-10-2020, 01:37 PM
Last Post: deanhystad
  open cv ->pygame: turn image into location Gamedeveloper 1 2,133 Jan-20-2020, 05:00 PM
Last Post: michael1789
  rect object not loading BlueClaw 2 4,217 Dec-11-2019, 04:25 PM
Last Post: BlueClaw
  beginner - object has no attribute gean 2 3,806 Nov-07-2019, 02:02 PM
Last Post: gean
  [pygame] Moving an object at angles SheeppOSU 3 8,711 Oct-24-2019, 08:05 PM
Last Post: SheeppOSU

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020