0
How many arguments are in this function call? range(0, 100, 5)
answer: 3
6 Antworten
+ 5
Mark Angelo Aunzo Please delete your duplicate question!
https://www.sololearn.com/Discuss/2585809/?ref=app
+ 1
There is 3 Argument in that function call
0
****** In This Function Has 3 Argument. ******
x=0
for i in range(0,100,5):
x+=1
print(x)
0
If you use a loop, this function will be repeated 20 times.
BUT THIS FUNCTION(range(0,100,5) HAVE 3 ARGUMENT.
0
Its 3
- 1
20