Python 3, range().append() returns error: 'range' object ...
https://stackoverflow.com/questions/2243729715.03.2014 · In Python 2.7 the following works without a problem: myrange = range(10,100,10) myrange.append(200) print(my range) Output: [10,20,30,40,50,60,70,80,90,200 ...