It looks like you're new here. If you want to get involved, click one of these buttons!
def sequence (i):
n = 1
a = 0
b = 1
c = 0
while n<=i:
if n==1:
print \"0\",
n = n + 1
elif n==2:
print \"1\",
n = n + 1
else:
c = a + b
a = b
b = c
print c,
n = n + 1
continue
r = str(\"Y\")
while (r == \"y\")or(r==\"Y\"):
i = input(\"Insert the quantity of numbers that you like to print \")
sequence(i)
print \"\"
r = raw_input(\"You wanna insert another number Y/N \")