Hacker Public Radio

Your ideas, projects, opinions - podcasted.

New episodes Monday through Friday.


HPR0302: Python Programming Part 3

Hosted by Xoke on 2009-02-25 00:00:00
Download or Listen

for x in range(1, 10):
       print(x)


for x in range(1, 11):
       print(x)


y = 0
for x in range(1,101):
       y = y + x
print(y)


y = 0
x = 1
while x < 101:
       y = y + x
       x = x + 1
print (y)


x = 0
y = 0
z = 1

while z < 100:
       x = y
       y = z
       z = x + y
       print (z)


x = 0
y = 0
z = 1

while z < 100:
       print (z)
       x = y
       y = z
       z = x + y


x = 0
y = 0
z = input('What number do we start from?')
i = input('And up to which number should we calculate')

while z < i:
       print (z)
       x = y
       y = z
       z = x + y

Comments



More Information...


Copyright Information

Unless otherwise stated, our shows are released under a Creative Commons Attribution-ShareAlike 3.0 Unported (CC BY-SA 3.0) license.

The HPR Website Design is released to the Public Domain.