vote up -2 vote down star
1

Can anyone tell me why num_chars and num_rows have to be the same?

from ctypes import *

num_chars = 8
num_rows = 8
num_cols = 6

buffer = create_string_buffer (num_chars*num_rows*num_cols+num_chars)

for char in range(num_chars):
        for row in range(num_rows):
                for col in range(num_cols):
                        if char == num_chars-1 and col == num_cols-1:
                                buffer[row*num_rows*num_cols+char*num_cols+col+row] = '|'
                                buffer[row*num_rows*num_cols+char*num_cols+col+row+1] = '\n'
                        elif col == num_cols-1:
                                buffer[row*num_rows*num_cols+char*num_cols+col+row] = '|'
                        else:
                                buffer[row*num_rows*num_cols+char*num_cols+col+row] = ('.', '*')[char>row]

print buffer.value

The output

.....|*****|*****|*****|*****|*****|*****|*****|
.....|.....|*****|*****|*****|*****|*****|*****|
.....|.....|.....|*****|*****|*****|*****|*****|
.....|.....|.....|.....|*****|*****|*****|*****|
.....|.....|.....|.....|.....|*****|*****|*****|
.....|.....|.....|.....|.....|.....|*****|*****|
.....|.....|.....|.....|.....|.....|.....|*****|
.....|.....|.....|.....|.....|.....|.....|.....|

And now changing num_chars to 15.

.....|*****|*****|*****|*****|*****|*****|*****|*****|*****|*****|*****|*****|*****|*****|
*****|*****|*****|*****|*****|*****|*****|*****|
*****|*****|*****|*****|*****|*****|*****|*****|
*****|*****|*****|*****|*****|*****|*****|*****|
*****|*****|*****|*****|*****|*****|*****|*****|
*****|*****|*****|*****|*****|*****|*****|*****|
*****|*****|*****|*****|*****|*****|*****|*****|
.....|*****|*****|*****|*****|*****|*****|*****|
flag

Can you please explain what you are trying to do? – Nadia Alramli May 16 at 15:03
Yep. I'm lost here as well. – shylent May 16 at 15:06
Well, I thought the output would be enough. You have to play with this and plug in different numbers to see what it is doing. I'll do that and plug in the output. – Scott May 16 at 15:12
Why are you using ctypes for this? – Nadia Alramli May 16 at 15:18
1  
The source and the output is not sufficient as You have stated that it's not working right. You want us to fix it but You don't say what exacly it should do, only that it does for the first example and doesn't for the second. PLEEEEASE be more descriptive. Help us help You. – Reef May 16 at 15:28
show 4 more comments

2 Answers

vote up 5 vote down check

You said you are using ctypes because you want mutable char buffer for this. But you can get the output you want from list comprehension

num_chars = 5
num_rows = 8
empty = ['.' * num_chars]
full = ['*' * num_chars]
print '\n'.join(
    '|'.join(empty * (i + 1) + (num_rows - i - 1) * full)
    for i in xrange(num_rows)
)

.....|*****|*****|*****|*****|*****|*****|*****
.....|.....|*****|*****|*****|*****|*****|*****
.....|.....|.....|*****|*****|*****|*****|*****
.....|.....|.....|.....|*****|*****|*****|*****
.....|.....|.....|.....|.....|*****|*****|*****
.....|.....|.....|.....|.....|.....|*****|*****
.....|.....|.....|.....|.....|.....|.....|*****
.....|.....|.....|.....|.....|.....|.....|.....

EDIT

I'll show you how you can use list comprehensions to draw whatever char bitmap you want to draw. The idea is simple. Build a boolean array with True in the places you want to print the character and False otherwise. And just use the 'or' trick to print the right character. This example will build a chess like board. You can use the same concept to draw any shape you want.

rows = 5
cols = 6
char = '#'
empty = '.'
bitmap = [[ (i + j)%2 == 0 for i in xrange(cols)] for j in xrange(rows)]
print '\n'.join(
    '|'.join(bitmap[j][i] * char or empty for i in xrange(cols))
    for j in xrange(rows)
)
link|flag
1  
That's a nice solution. – Accipitridae May 16 at 15:33
I'm a little confused by this. I don't get the same output. Why isn't num_cols used? Yet you have that many cols in your characters. – Scott May 16 at 15:35
If you copy and paste my code it'll produce the exact output in the answer – Nadia Alramli May 16 at 15:37
What do you mean by num_cols? you need to be more descriptive. I'm assuming that num_chars means the number of chars in every |.....| – Nadia Alramli May 16 at 15:39
WelI get this: ........|********|********|********|********|********|********|******** ........|........|********|********|********|********|********|******** ........|........|........|********|********|********|********|******** ........|........|........|........|********|********|********|******** ........|........|........|........|........|********|********|******** ........|........|........|........|........|........|********|******** ........|........|........|........|........|........|........|******** ........|........|........|........|........|........|........|........ – Scott May 16 at 15:39
show 10 more comments
vote up 1 vote down

There we go. I had row*num_rows instead of row*num_chars I must need a Dr Pepper. And by the way, this wasn't homework. It's for an LCD project.

num_chars = 10
num_rows = 8
num_cols = 6

buffer = create_string_buffer (num_chars*num_rows*num_cols+num_chars)

for char in range(num_chars):
        for row in range(num_rows):
                for col in range(num_cols):
                        if char == num_chars-1 and col == num_cols-1:
                                buffer[row*num_chars*num_cols+char*num_cols+col+row] = '|'
                                buffer[row*num_chars*num_cols+char*num_cols+col+row+1] = '\n'
                        elif col == num_cols-1:
                                buffer[row*num_chars*num_cols+char*num_cols+col+row] = '|'
                        else:
                                buffer[row*num_chars*num_cols+char*num_cols+col+row] = ('.', '*')[char>row]

print repr(buffer.raw)
print buffer.value
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.