Forum: PHP Dec 8th, 2004 |
| Replies: 7 Views: 2,018 i'm not sure how my post is totally irrelevant. perhaps i shouldn't have said that we're on the "topic" of scripting languages, but instead that this is a thread in the c/c++ forum and i'm... |
Forum: PHP Dec 8th, 2004 |
| Replies: 7 Views: 2,018 mikeandike22,
did you read the question? |
Forum: PHP Dec 8th, 2004 |
| Replies: 7 Views: 2,018 while we're on the topic of scripting languages, here's a dirty hack in python:
l = []
for i in range(1,10):
if i % 2 != 0:
l.append(i)
for i in range(1,6)[::-1]:
print... |