Search
 
SCRIPT & CODE EXAMPLE
 

PYTHON

olst = [] a = int(input()) b = int(input()) for ele in range(a,b+1): if ele%2 != 0: olst.append(ele) print(olst[::-1])

olst = []
a = int(input())
b = int(input())
for ele in range(a,b+1):
        if ele%2 != 0:
                olst.append(ele)
                
print(olst[::-1])
Comment

PREVIOUS NEXT
Code Example
Python :: changing instance through dict changes all instances 
Python :: how to say someting in python 
Python :: how to close python with a line of code 
Python :: plot_histogram qiskit pycharm 
Python :: colorized progress bar python in console 
Python :: pythoni me numra 
Python :: your generated code is out of date and must be regenerated with protoc = 3.19.0 tensorflow 
Python :: flask download a file 
Python :: how to remove stopwords from a string in python 
Python :: how to make an encryption program in python 
Python :: Python Time object to represent time 
Python :: python dict exclude keys 
Python :: how to make a pairs plot with pandas 
Python :: python afficher hello world 
Python :: wonsan 
Python :: extract topic to csv file 
Python :: sort list of files by name python 
Python :: add footer embed discordpy 
Python :: T-Test Comparison of two means python 
Python :: place a widget in a specific position in tkinter 
Python :: selenium find element by link text python 
Python :: how to limit a long text in djagno 
Python :: matplotlib display axis in scientific notation 
Python :: replace column values pandas 
Python :: urllib python 
Python :: tag for deleting from a list in python 
Python :: python scatterplot figsize 
Python :: pydotprint 
Python :: print decimal formatting in python 
Python :: splittext py 
ADD CONTENT
Topic
Content
Source link
Name
3+7 =