This website works better with JavaScript
Home
Explore
Help
Sign In
pythoncoder8
/
code-wars
Watch
1
Star
0
Fork
0
Files
Issues
0
Pull Requests
0
Wiki
Browse Source
Create Generate Range of Integers.py
PythonCoder8
3 years ago
parent
a8c85d52d5
commit
d460a7066c
1 changed files
with
2 additions
and
0 deletions
Split View
Show Diff Stats
2
0
8 kyu/Generate Range of Integers.py
+ 2
- 0
8 kyu/Generate Range of Integers.py
View File
@@ -0,0 +1,2 @@
+def generate_range(min, max, step):
+ return [i for i in range(min, max+1, step)]