Python Programming Tutorial - 9 - Range and While

preview_player
Показать описание
Рекомендации по теме
Комментарии
Автор

I made a list/array called myButtcrack, and used range to split myButtcrack down the middle. These videos are really helpful.

personMN
Автор

Something Bucky didn't mention in the video is that if you put a negative number as the third value in the range expression, it will reverse its way through the range.
eg. for x in range (6, 10, -1):  >>> 9, 8, 7, 6
     for x in range (3, 10, -2):   >>> 9, 7, 5, 3

AlphaZeroOmega
Автор

for x in range(100):
print("YES BUCKY. YOU ARE AWESOME, THANK YOU MAN")

MohammadMahadiHassain
Автор

1:53 Trash Battle Easter egg.

The battle for throwing away cardboard from a few episodes ago continues.

kylekunkel
Автор

1:11 ".. remember: computers start counting at 10". Thanks, Bucky xD

MC-ibsd
Автор

Addicted to these videos, man. thanks for making these, they have been very helpful.

HiHello-pltj
Автор

The programmer is a lonely species of human. You provide  us knowledge and entertainment.

fairytail
Автор

After programming on C/C++, PHP, Javascript it really frustrates me that i can't do someVar++ instead of someVar+=1

wiredelectrosphere
Автор

so much fun watching your videos <3

argjendsejfullai
Автор

Hey Bucky! 1:13 Computers don't start counting at 10! But you almost had me. @thenewboston

jamelstringer
Автор

A very important aspect to learning something, is having a funny teacher. Good job!

SteamPunkLV
Автор

So glad I found this channel again. Made while loop so easy to understand. Thanks Bucky!

rickfx
Автор

I did enjoy and I WILL see you next time.

laxlax
Автор

for n in range(101):
print(n)
print("number that divided by 4")
number = 100
for n in range (101):

if n % 4 is 0:
print(n)

keyurpatel
Автор

I'm I the only one that chuckled at "buttcrack"? :3

Unisykolist
Автор

bucky your'e really
you are the best video teacher and youtuber

vaishnavm
Автор

best tutorial on the internet, not just python

eminyild
Автор

def allowedDatingAge(myAge):
GirlAge = myAge/2 + 7
return GirlAge

for x in range(15, 61):
print("someone who is", x, "years old can date someone")
print("who is", allowedDatingAge(x), "years old or older")

gijsvdl
Автор

Good job Bucky! I love your tutorials saves all that reading damn books!! You make it really simple to follow along

alandmcleod
Автор

this is way more straightforward than javascript :-)

jdsgotninelives