range(0,100,5) How many argument in the function? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

range(0,100,5) How many argument in the function?

I need answer, please anybody can help.

2nd Jun 2019, 10:04 AM
Akil 🇧🇩
Akil 🇧🇩 - avatar
5 Answers
+ 6
=========== | | ==== ==== | | | | |____| | | | | | | |==========| | | | | | | |========\ | \ | / |======== / | \ | \ | \ |========== | | |========== | | |========== |========== | | |========== | | |==========
2nd Jun 2019, 10:10 AM
Farry
Farry - avatar
+ 4
Number of arguments for range can be: range(50) => values from 0 up to 50 - 1: 0,1,2,3... range(10, 50) => values from 10 up to 50 - 1: 10,11,12,.. range(10, 50, 2) => values from 10 up to 50 - 1 but only every second number: 10,12,14,...
2nd Jun 2019, 12:08 PM
Lothar
Lothar - avatar
+ 2
Tnx, Elders.
2nd Jun 2019, 2:09 PM
Akil 🇧🇩
Akil 🇧🇩 - avatar
+ 1
Hi! 1st argument : start number 2nd argument : end number 3rd argument : step If your step is 1, you can write : range(2, 5) #all numbers between 2 and 5 If your start index is 0 and your step is 1, you can write : range(10) #all number between 0 and 10
2nd Jun 2019, 10:48 AM
Théophile
Théophile - avatar