I have a next code:
a = int(raw_input())
b = int(raw_input())
c = int(raw_input())
mylist = []
for i in range(a, c):
mylist.append(i)
print mylist
But by this way I am getting just only 2 elements in list.
If I use range(a, d)
I'll get an error NameError: name 'd' is not defined
I need add value of a, b, and c into mylist with loop for.