Python 3.6 Tutorial 8 (Range function)

preview_player
Показать описание
In this tutorial we work on the range function and show some examples of what it can do.

Рекомендации по теме
Комментарии
Автор

his voice is so relaxing omg good to desstress from all the studies

dianaayt
Автор

I like that you are making a video out of documentation, That we way we can learn to read the documentation. Thank you ver much!

rikon
Автор

Thanks for the tutorial man cleared up quite a few doubts i had, keep up the good work!

gigadrian
Автор

That cleared everything up for me. Very easy to understand. Thanks!

TwilightZone
Автор

thank you so much for this video! your tutorial is indeed very easy to understand.

sophiaonyoutube
Автор

Hello thanks for explaining clearly :)

fatihyanar
Автор

Thanks man. It helped a lot. Pushed the like button.

honggwan.
Автор

How do you match two dataframes with the same value

Dopeboyz
Автор

Man, it was a good video, it helped me understand!

misoyotakedashi
Автор

suppose there is a list
a=[56, 67, 78, 89, 23, 34, 43, 21]
can we take out 78, 89, 23 using range function like a[2:5]

mahimabansal
Автор

n=1
while n>0:
print ("Thank You")

PoliphiloShek
Автор

suppose i have to print if n%2==0 and it ranges from 2 to 5 ten how would i print the range function?

Rahul_Lata_
Автор

When i type list(range(10)) it shows 'list object is not callable'

AkrCharu
Автор

Thanks, I also realized something about how striding works:

list = [3, 4, 3, 6, 1, 4, 7, 5, 7, 3]
print(list[start from this including:end here excluding:stride in this step starting from the end])

# so, here’s some imaginary examples that I
# should test

print(list[:8:2])
>[3, 3, 1, 7]

print(list[:8:-2])
>[5, 4, 6, 4]

print(list[8::2])
>?

print(list[8::-2])
>?

ToriKo_
Автор

Can we print Str using range() functon ???

real_yoplayer
Автор

hi
i have a question. can we do
for j in range(i+1, len(list_a)):
i am getting error. could you please help.

muhammadshahnawaz