[Tutor] sequence of elements problem
donsuni
donsuni at gmail.com
Fri Nov 8 13:54:53 CET 2013
Hi, I have a problem in python which is kind of tricky.
if i give a sequence of numbers, i should get another sequence of numbers
such that the the elements exceeds previous element in the list. For eg
seq_num([3,2,5,7])=[3,5,7] since 5 is >3, and 7>5
seq_num([1,2,3,4])=[1,2,3,4] since 2 is >1, and 3>2 and so on
seq_num([5,5,5])=[5]
seq_num([9,8,7])=[9]
and so on without using any inbuilt functions.
I tried the following code but it is not incrementing:
def seq_num(numlist):
n=len(numlist)
for i in range(0,n - 1):
if numlist[i]>numlist[i+1]:
i+=1
return numlist[i]
--
View this message in context: http://python.6.x6.nabble.com/sequence-of-elements-problem-tp5038402.html
Sent from the Python - tutor mailing list archive at Nabble.com.
More information about the Tutor
mailing list