He didnt explain how to add and delte things form the list. Well its done like this (how to add) family.append('whatevver') .... And to remove go family.remove([...])
Id say I am a little more experineced than everyone else ehre I have been learning like for 5 months now... And I am long away from knowing how to really programm. But I can tell you as soon as you know 1 programming language all the other ones will come very fast
Thanks again for taking the time to make these great tutorials. I'm reading "Beginning Python" by Hetland and watching your work here and it's been a very big help in understanding Python.
@SharpCutterTeam I am trying to learn as much as possible, even though I am not that great at this stuff yet I want to be. I think I am going to try to learn Python and or Java and learn enough to be awesome at it.
@bickle1000 Regardless of that it is the element at the third index, the video creator called it the third element. But since there are three elements before it, should not that make list[3] the FOURTH element?
@Zeldakitteh that was actually a mistake/incorrect statement. "sis" is actually the fourth element with index value 3.
family[3] is actually saying return the element at position or with index value 3. which turns out to be the fourth element in the list. So there is no 0th element. Well only if the list is empty in which case you'll have no element.
I sort of asked about whether it is right to call the element corresponding to the index of 3 the third element. Because really, it is the fourth element? I do not think you read what I posted completely.
True story: I watched all of your videos right before my programming exam (we're using Python of course), and I'm pretty damn sure I aced it. Thank you thank you thank you! You're amazing, Bucky!
I'm coming from c++ and this is wayyy simpler. Can do SOME of the same things in a simpler way. But C++ does a lot of other things better than python... I guess it just depends on what your trying to do..That's why they have different programming languages.
Ive Just Started Programing, and my friends told me i should do c++ but my dad said that i should do Python, because Im not particularly good at remembering things or doing things, but he said that Python was Simple but had the power to do what i wanted, These are the best Tutorials on The Web
note all adresses stored on a computar start at 0 your ram's first byte is stored at address 00000000 depending on how many bytes it has... mine gas 2 gb so there is 2000 bytes aka 200 = 11111010000 so my first adress would be called 00000000000... the way everything is stored is about 50 times more complicated and yes i know exacy how a ram stores info... wou i cant care to explain
@gorgolyt not really anymore unless you are a very wierd mathematician. There are still some Layman debates going on over it but it is pretty much convention, esspecially since the creation and development of the computer sciences, the natural numbers begin at zero and maintain an aleph cardinality. A good argument, discrete division based in natural numbers, if zero is not natural 9 divides 9 equals one with a non existant remainder which makes the answer nonexistant, but thats not right.
i've taken numbers and sets, analysis, groups, and a few other pure courses at a very good uni, and the convention has always been the standard one.
like i say though it depends on context; though i'm new to computer science, in that field it's my understanding that they almost always use the 0 convention.
although interestingly in MATLAB which is a mathematical programming language, the standard convention is again used.
@gorgolyt the best argument I found for not including zero is that (n) an element of N is the smallest element in the set that is monotonically increasing, one would be that value in an additive sense. But I still lean towards the zero because (did some research to get the mathematician's name) since '96 Ribenboim asserts that unless inconvienient we assume the zero to be an element of N.
And with the 9/9 exp I was just pointing out that if an expresion is defined so must be its answer.
@gorgolyt I guess for better termonology we really should just do away with saying natural numbers and use better jargon like the non-negative integers and the counting integers.
Hey guys if you're on Python 3 or greater input() replaces raw_input().
So for this tutorial your code would be as follows:
buck = input("Enter name: ")
print(buck)
Don't forget the brackets! This is also new in Python 3 or greater. I was stuck personally for ages because I didn't have the brackets around buck and I kept getting the invalid syntax error.
MENN thanks for the tutorial add me as your friends, you are our hero from dominican republic, at last I found a great teacher, I want to specialize in sqlite3 "python" but theres a few things that i dont understand......
keep making tutorials your amazing bro!!!! my english is very bad sorry
i think that the type of variable that input returns depends on what the actual input is. say, if the user enters 50 it would return a number variable. if they entered asdf it would return a string variable. whereas raw_input always returns a string. is this not correct?
hey can anyone help?? when u do raw_input for example "what is your age: "
how do u take the number the user types so that it can be used in different math things like if i typed 2 how would i say you will be 4 in 2 years time
When you use raw_input it is interpreted by the system as a string. Strings can be added together or concatenated so Adding dog + cat would equal dogcat.
You can't add strings and integers though. So you have to take the string you get from the raw_input and convert it into an integer. You'd do that by using int(entervariablehere)
no, if you type anything other than a number it returns an error. Learn the order of casting. The last thing that statement does is make it an int. It can only be an int.
raw_input takes any input as a string. It will take numbers and letters, however it will store them as a string (so if you enter 15 it will be kept as '15' and not 15). Putting int() around it tries to change the variable to an int (from '15' to 15), but you can't do that because raw_input inputted a string. putting str() around it tries to change it from a string to a string... so it's pointless. int() doesn't work, str() works but achieves zilch, and thats why theres both input and raw_input
These tutorials are great. After watching the first 8 I made a practice program that simply finds density for you, and prints it out in a nice sentence in the form of a float. It doesn't accept units of measurement yet though haha. I'm sure that I'll reach that eventually, since I plan to watch all of these videos over the course of the next few weeks. I enjoy your "newb" friendly teaching method, too. Thank you for making these.
I've just started learning python after having been doing c++ for the majority of my programming life, and WOW. I am amazed! it's so simple yet so powerful!
@BenAshton24 Yea! That's my opinion too! Do you like this more than C++? Dunno what to say.The only difference is that I don't have a really long "programming life" for c++ XD
It's not because it loves 0's and 1's, its because it doesnt check the index of the item, but how many items are in front of it. sis is 3 becaues there are 3 items in front of it.
Also note that you apparently can put string and numbers in the same list and that you can use family[2][1] to get the second letter of the third family member.
what if I wanna create a list which contains numbers between 1700 and 2012?
PossibleYears = [1700 to 2012]
how can I do this without typing EVERY year between those two.
fdrpyahoocom 3 days ago in playlist Python Programming Tutorials
love the vids thx for the help with python
galschlesinger 4 days ago
Nice tutorials Bucky...short,simple and straight to the point..thnx hey! Lov ur voice as well! :)
Michelle199011 4 weeks ago
Comment removed
Michelle199011 4 weeks ago
hey, you are perfect, i mean, you are a good teacher and your voice is nice to hear too. just go on. thumbs up ;)
ZuzanaO852 1 month ago 3
Is a sequence the same as an array
TheTezza48 2 months ago
why is python harder than java :(
14koder 2 months ago in playlist Python Programming Tutorials
He didnt explain how to add and delte things form the list. Well its done like this (how to add) family.append('whatevver') .... And to remove go family.remove([...])
Please like this so others can read!
larsmaximilian1 2 months ago in playlist Weitere Videos von thenewboston 35
@larsmaximilian1 Where did you get this?
alienkishorekumar 2 months ago in playlist Python Programming Tutorials
@alienkishorekumar
Id say I am a little more experineced than everyone else ehre I have been learning like for 5 months now... And I am long away from knowing how to really programm. But I can tell you as soon as you know 1 programming language all the other ones will come very fast
larsmaximilian1 2 months ago
@larsmaximilian1 thanks
Sebastian781 2 months ago in playlist More videos from thenewboston
awesome tut
xLDH1109x 3 months ago in playlist More videos from thenewboston
You cant make 2D arrays right?
TheLandFerry 3 months ago in playlist Python Programming Tutorials
why is this so useful
ThePokemonteacher 3 months ago
thank you..i needed it~!!
Pottercrazygirl 4 months ago
perfect tutorials!!!!
foufoutos100 4 months ago
wow man u r a great teacher. congratz
TheGurujeee 4 months ago
Comment removed
TheGurujeee 4 months ago
Thanks again for taking the time to make these great tutorials. I'm reading "Beginning Python" by Hetland and watching your work here and it's been a very big help in understanding Python.
JackMyersPhotography 4 months ago
I like how he starts talking really low in all the videos, but at the end he talks like he is really interested in the subject! :) hehe!
Pettergh 4 months ago
Comment removed
DreadKyller 4 months ago
Comment removed
DreadKyller 4 months ago
Comment removed
DreadKyller 4 months ago
This guy is just like amazing :D
TheQuickscopezPro 4 months ago
How do you set up a stack where you can push, pop, and show?
And great tutorials :)
reaper12300 4 months ago
I have watched Bucky's java, python tutorials...
so amazing... better than my teachers...
youyadensi 4 months ago
it's to late too watch. i will have python test tomorrow TvT
it's so sadddd ;(
eiiwlee 5 months ago in playlist More videos from thenewboston
@eiiwlee How was your text... 3 months ago?
supersushi269 1 month ago
@supersushi269 >>>>>>>>>D+
eiiwlee 1 month ago
@supersushi269 because someone didn't notice this video was uploaded in 2009 ;D
TheSturdge 1 month ago
Bucky is our Hero
glavni555 5 months ago
Its like a array in java.....in which i learned java from you...
XxXNightstalkerX 6 months ago
Hey just wanted to say thanks for the tutorials they are really helping me as a really new programmer!
gamevidshq 6 months ago
your dad is number 1? :D
ecvsio 6 months ago
This sounds like an array
MrDadcard 6 months ago
@MrDadcard it is man .. what did u learn ASP or PHP?
SharpCutterTeam 6 months ago
@SharpCutterTeam I am trying to learn as much as possible, even though I am not that great at this stuff yet I want to be. I think I am going to try to learn Python and or Java and learn enough to be awesome at it.
MrDadcard 6 months ago
Help:
list1 = ['1', '2', '3']
raw_input("insert from the list1: ")
How do you limit this raw input using the list1?
Thx
Gurlag39 7 months ago
Comment removed
joonas2345 7 months ago
@Gurlag39 if you want to add the raw input to the list:
list1 = ["1, 2, 3"]
raw_input("insert from the list1: ")
list1.append(raw_input)wrote some good porgrams
if this is not what you want ask me i
ben3362 7 months ago
Holy shit, watched 9 parts and now I realised your name is Bucky xP
5207183 7 months ago
can python be used to make a search engine and a program like winamp ? :)
Noagression 7 months ago
mom is 0, dad is 1 :D
MrLinuxFreak 7 months ago 26
@MrLinuxFreak
computers are machines so they are never wrong
computers consider women to be inferior...
hmmm
kerimil 3 months ago
@MrLinuxFreak bro is a number 2 :DD
MrAllexitable 3 months ago
4 people are scared of snakes
JadedLeach 8 months ago
Will you marry me?
TheJuli1241 8 months ago
In the course of 9 tuts you taught me so much. THANK YOU!
EvilGenius447 8 months ago
your the man bucky
treflip3601 9 months ago
wow, python is real easy to learn :o
kaimarohero 9 months ago in playlist Python Programming Tutorials
Aren't lists like arrays?
Morcous16 9 months ago
@Morcous16 they are.
PopulardayOfApril 8 months ago
@Zeldakitteh in programming anythings possible O.o
xyzdorky66 10 months ago
2:30 - You say that 'sis' is the third element of the list. But 'sis' is the fourth element, is it not? Or is there such a thing as a 0th element?
Zeldakitteh 10 months ago
@Zeldakitteh its the element at the third index, or reference in the list. The list is indexed as 0, 1, 2 ...... n-1 element.
bickle1000 10 months ago
@bickle1000 Regardless of that it is the element at the third index, the video creator called it the third element. But since there are three elements before it, should not that make list[3] the FOURTH element?
Zeldakitteh 10 months ago
@Zeldakitteh list[3] is actually the fourth element in the list at position or index 3.
bickle1000 10 months ago
@bickle1000 2:30
Zeldakitteh 10 months ago
@Zeldakitteh that was actually a mistake/incorrect statement. "sis" is actually the fourth element with index value 3.
family[3] is actually saying return the element at position or with index value 3. which turns out to be the fourth element in the list. So there is no 0th element. Well only if the list is empty in which case you'll have no element.
bickle1000 10 months ago
@bickle1000 stfu his explaination actually makes sense.
likker321 9 months ago
Comment removed
bickle1000 10 months ago
I sort of asked about whether it is right to call the element corresponding to the index of 3 the third element. Because really, it is the fourth element? I do not think you read what I posted completely.
Zeldakitteh 10 months ago
Comment removed
bickle1000 10 months ago
do we have arrays in python?
okmich 11 months ago
True story: I watched all of your videos right before my programming exam (we're using Python of course), and I'm pretty damn sure I aced it. Thank you thank you thank you! You're amazing, Bucky!
bllw2000 11 months ago
therefore, -2=3
albrco0 11 months ago
After Tutorial 9 is done, the next one YouTube recommends is Tutorial 8. But the next one is supposed to be Tutorial 10. Anyone knows the reason??
midi2me 1 year ago
Wow strings management in Python is wonderful
Dascoolinunal 1 year ago 2
Does anyone else find it dreadfully annoying when he puts both quotes and then goes back to enter the text inside?
StephenHardyMusic 1 year ago
if you really want to learn... try mixing all the tutorials... its hard shit
pipe99chumby 1 year ago
Comment removed
brickmastertube 1 year ago
Programmers count from zero. Get used to it =P
Gfdtink 1 year ago 2
I like this.Well I like C++ more but w/e
idvhfd 1 year ago
wait i thought it didnt matter if we used single or double quotes for strings?
acerookie1 1 year ago
This has been flagged as spam show
If I had to, I would pay for your tutorial! Very nice job!
nenebale 1 year ago
If I had to, I would pay for your tutorial! Very nice job!
nenebale 1 year ago
this is the same as an array in vb
d4k074p4l 1 year ago
I'm coming from c++ and this is wayyy simpler. Can do SOME of the same things in a simpler way. But C++ does a lot of other things better than python... I guess it just depends on what your trying to do..That's why they have different programming languages.
adrianm15 1 year ago
you should be a high paid college teacher dude, awesome job.
TheRedMoonProject 1 year ago
At least i find a good tutorials in internet =)
ShadowSealIRL 1 year ago
great video
JoeG2324 1 year ago
btw if you learn this FORGET PHP. php is SHIT ;)
Python rulez! (with Django)
KilianMorrison 1 year ago
@KilianMorrison
No, C/C++ Rules!
DeadSteal 1 year ago
@DeadSteal I say start with python then move on to C++
Wingedstars 1 year ago
@WingedstarsI already know C++.
DeadSteal 1 year ago
is it like array() in PHP?
KilianMorrison 1 year ago
@KilianMorrison Very similar, yes.
TheiPeer 1 year ago
I though these were called arrays? Doesn't sequence mean steps of code for the program to execute one right after the other?
j0hnhaney 1 year ago
very easy to learn tutorial........
nice work done cheerzzzzzzzzzzzzzz
venomist007 1 year ago
you got a skill!
pasham123 1 year ago
you are awesome :D
thanks for this good tutorials :)
ahmedsamy 1 year ago
best teacher eva!
haxer97 1 year ago 2
best teacher eva!
haxer97 1 year ago 2
lol negative zero
Airman9519 1 year ago
subtitles are off?
crazyguy369 1 year ago
can u come in my school.......u will be the best teacher ...lol
kevin12sk 1 year ago 83
Can someone give me a link to a list of all the things you can do with lists?
like list.index() or len(list)? Thanks.
Grkgermn333 1 year ago
FOR ALL THOSE USING LATEST PYTHON VERSION, instead of 'bucky'[3].....write
print('buck'[3]).....
Cavemanbennett 1 year ago
Ive Just Started Programing, and my friends told me i should do c++ but my dad said that i should do Python, because Im not particularly good at remembering things or doing things, but he said that Python was Simple but had the power to do what i wanted, These are the best Tutorials on The Web
CombatArmsDailyPlays 1 year ago
Very well explained, better than a book.
Tresvian 1 year ago
mom is zero and dog is 4 haha dog is the highest
bboybram 1 year ago
your tutorials are amazing
yesterday i only knew that a python is a snake
mrvoodo1 1 year ago 246
@mrvoodo1 and a Weapon =D
TheFreestyleMonkey 1 year ago 2
@mrvoodo1 lol
hello12913 5 months ago
note all adresses stored on a computar start at 0 your ram's first byte is stored at address 00000000 depending on how many bytes it has... mine gas 2 gb so there is 2000 bytes aka 200 = 11111010000 so my first adress would be called 00000000000... the way everything is stored is about 50 times more complicated and yes i know exacy how a ram stores info... wou i cant care to explain
tomek123kotek 1 year ago
Thanks Po
ffffgen 1 year ago
Where are tuples explained?
Jonte135 1 year ago
Python is awesome. it is so easy comparatively
qwertyfshag 1 year ago
This has been flagged as spam show
THE COLLAPSE OF THE THEORY OF EVOLUTION IN 20 QUESTIONS
newaninvitationtothetruth.blogspot ( DOT ) com/
((( Acquainted With Islam )))
aslam-ahmd.blogspot ( DOT ) com/
acquaintedwithislam.maktoobblog ( DOT ) com/
ahmd1431 1 year ago
just so you know, the jargon you are looking for when you say it counts 0, 1, 2 .... is said to be counting in the natural numbers
MrNickolasWilliams 1 year ago
@MrNickolasWilliams the natural numbers are usually taken as starting with 1 (though it depends on context, convention etc.).
gorgolyt 1 year ago
@gorgolyt not really anymore unless you are a very wierd mathematician. There are still some Layman debates going on over it but it is pretty much convention, esspecially since the creation and development of the computer sciences, the natural numbers begin at zero and maintain an aleph cardinality. A good argument, discrete division based in natural numbers, if zero is not natural 9 divides 9 equals one with a non existant remainder which makes the answer nonexistant, but thats not right.
MrNickolasWilliams 1 year ago
@MrNickolasWilliams but equally 9/0 has a nonexistent answer
i've taken numbers and sets, analysis, groups, and a few other pure courses at a very good uni, and the convention has always been the standard one.
like i say though it depends on context; though i'm new to computer science, in that field it's my understanding that they almost always use the 0 convention.
although interestingly in MATLAB which is a mathematical programming language, the standard convention is again used.
gorgolyt 1 year ago
@gorgolyt the best argument I found for not including zero is that (n) an element of N is the smallest element in the set that is monotonically increasing, one would be that value in an additive sense. But I still lean towards the zero because (did some research to get the mathematician's name) since '96 Ribenboim asserts that unless inconvienient we assume the zero to be an element of N.
And with the 9/9 exp I was just pointing out that if an expresion is defined so must be its answer.
MrNickolasWilliams 1 year ago
@gorgolyt I guess for better termonology we really should just do away with saying natural numbers and use better jargon like the non-negative integers and the counting integers.
MrNickolasWilliams 1 year ago
thanks for your tutorials
farvision100 1 year ago
Hey guys if you're on Python 3 or greater input() replaces raw_input().
So for this tutorial your code would be as follows:
buck = input("Enter name: ")
print(buck)
Don't forget the brackets! This is also new in Python 3 or greater. I was stuck personally for ages because I didn't have the brackets around buck and I kept getting the invalid syntax error.
woofa20 1 year ago
@woofa20 Sorry my post was meant for the previous tutorial, my bad, lol.
woofa20 1 year ago
MENN thanks for the tutorial add me as your friends, you are our hero from dominican republic, at last I found a great teacher, I want to specialize in sqlite3 "python" but theres a few things that i dont understand......
keep making tutorials your amazing bro!!!! my english is very bad sorry
LOL
djrab002 1 year ago
Thank you so much! Your tutorials really help me.
I'm only learning python to get the jist of programming, I'm planning on making java games.
TlPeanut 1 year ago
I am in Russia. Unfortunately the practice of spoken English is very small. Please add captions to your lessons.
Thanks
vnedrim 1 year ago
here is an cool example:
name=raw_input("Enter your name: ")
if name[0]=="p": print ' Good Man'
else: print 'Asshole'
what this does ???
if your name starts with p then it'll reply "Good Man"
else "A'hole" lol
but it's case sensitive , i mean peter is a good man but Peter is an a'hole lol
GriffinnoFamily 1 year ago
@GriffinnoFamily You can have do input.lower() after the person enters their name and before the if and else statements.
Aggregate02 1 year ago
@GriffinnoFamily
x = raw_input("Please enter your name: ")
if x[2]=="e":
print("Good Man!")
else: print "Asshole!"
This should work.
nikkcore 1 year ago
Your tutorials are so awsome. Could you make some for blender (continuing from no.4)?
MrMoonspy 1 year ago
This has been flagged as spam show
Thank you very much.
wamdpst 2 years ago
I love Python!
THanks for the great tutorials and keep up the good work :D
adrianmihai21 2 years ago
thx for yout great tutorials ^^
ps: strings are arrays (like your list "family")
Dome21007 2 years ago
great video buky
msdodo2006 2 years ago
Comment removed
concohabin1 2 years ago
How would you go about reading in and adding to the array? As in asking 'what are the days of the week?' and the input going to days[ ] ?
thomasjad 2 years ago
Dude these tutorials are great! Thanks a mill and keep up the good work!
thomasjad 2 years ago 3
Nawespet,
raw_input is used to receive letters and numbers and returns it as a string.
input prompts only for digits!
Lance3375 2 years ago
i think that the type of variable that input returns depends on what the actual input is. say, if the user enters 50 it would return a number variable. if they entered asdf it would return a string variable. whereas raw_input always returns a string. is this not correct?
jasongosen 2 years ago
hey can anyone help?? when u do raw_input for example "what is your age: "
how do u take the number the user types so that it can be used in different math things like if i typed 2 how would i say you will be 4 in 2 years time
nawespet 2 years ago
When you use raw_input it is interpreted by the system as a string. Strings can be added together or concatenated so Adding dog + cat would equal dogcat.
You can't add strings and integers though. So you have to take the string you get from the raw_input and convert it into an integer. You'd do that by using int(entervariablehere)
So, if I understand the question it might be:
print "Age test exercise"
x = raw_input("How old are you?")
y = int(x)
print "You will be ", 2+y,"in two years."
Klinkenheimer 2 years ago
What I do is make everything with input() and just print it out with back ticks ``. Back ticks convert whatever to strings.
To make a decimal a string, simply set the number(s) to a variable and type this:
`float(x)`
I love Python :)
megametalpriest 2 years ago
x = int(raw_input("What is your age: "))
that way, x is whatever they type in :D
itsbrad212 2 years ago
even text?
sekulr 2 years ago
yeah
itsbrad212 2 years ago
no, if you type anything other than a number it returns an error. Learn the order of casting. The last thing that statement does is make it an int. It can only be an int.
jrockpunk1 2 years ago
what about str(raw_input("What is your age: "))
???
itsbrad212 2 years ago
raw_input takes any input as a string. It will take numbers and letters, however it will store them as a string (so if you enter 15 it will be kept as '15' and not 15). Putting int() around it tries to change the variable to an int (from '15' to 15), but you can't do that because raw_input inputted a string. putting str() around it tries to change it from a string to a string... so it's pointless. int() doesn't work, str() works but achieves zilch, and thats why theres both input and raw_input
jrockpunk1 2 years ago
So just raw_input without the st() will store it as a string? Thanks :D I've always done str() around it. Now I know better.
itsbrad212 2 years ago
yup :)
So when you want to store an int use input(), and strings use raw_input. glad I could help.
jrockpunk1 2 years ago
These tutorials are great. After watching the first 8 I made a practice program that simply finds density for you, and prints it out in a nice sentence in the form of a float. It doesn't accept units of measurement yet though haha. I'm sure that I'll reach that eventually, since I plan to watch all of these videos over the course of the next few weeks. I enjoy your "newb" friendly teaching method, too. Thank you for making these.
ChestnutCreeper 2 years ago
this is gettinig me through my course!
banshee107 2 years ago
Good stuff, your explanations are easy to understand, it's really helping me understand programming. Thanks for taking the time to do this
zonk1959 2 years ago
its 1:22 AM. I am learning this too
Lance3375 2 years ago
...reminds me in some way of ...mysql ?
daeheadshot 2 years ago
I've just started learning python after having been doing c++ for the majority of my programming life, and WOW. I am amazed! it's so simple yet so powerful!
BenAshton24 2 years ago 72
that's why most of the programmers like python because the languages cares about the programmer not the programmer looking after the language.
r3sp3c791 2 years ago
@BenAshton24 I KNOW its the best to start out with !!! i dident know scrath before these tutorials
SUBscribeSCAdiddillyDO! *click*
iopabc123789 1 year ago
@BenAshton24 agreed
vgmaster94 1 year ago
@BenAshton24 Yea! That's my opinion too! Do you like this more than C++? Dunno what to say.The only difference is that I don't have a really long "programming life" for c++ XD
idvhfd 1 year ago
@BenAshton24 Don't forget Slow too!
StephenWebb1980 1 year ago
@BenAshton24 Yeah, i did c++ so now im doing this and when im finnished ill move back to c++ and see if its any help
RaamAnkka 1 year ago
you tuts are awesome! i learned so much in 2 hours :3 let alone 2 days
slashsd36000 2 years ago
man i love you videos lol
ss4pandaman 2 years ago
It's not because it loves 0's and 1's, its because it doesnt check the index of the item, but how many items are in front of it. sis is 3 becaues there are 3 items in front of it.
Manifest222 2 years ago
Also note that you apparently can put string and numbers in the same list and that you can use family[2][1] to get the second letter of the third family member.
Kobboi 2 years ago
It´s 4 am and im trying to learn this >_>..
ShinDaMadness 2 years ago
Simular to C++ int Arrays, very nice Tut.
papano12 2 years ago
awesome dude!!!!
hpaliyah 2 years ago
have some disco music background so that I can't sleep... thanks dude great tutorial and also a great lullaby...
gobitz 2 years ago 3
lol what a confusing name
y cant just name it array lol
slier81 2 years ago
Is there anyway of changing letter to number equivalents?
So:
'a' would become 1,
'b' would become 2,
ect
ItsConcept3D 2 years ago
a = 1
b = 2
MasterJ37 2 years ago
I got that idea but having to do it for the entire alphabet and then having to put 's','e','n','t','a','n','c','e'...
ItsConcept3D 2 years ago
loop.
Dynamics18 2 years ago
thanks man =)
zamliman 2 years ago
How do I check what the last value of the string is?
Petterss22 2 years ago
to check the last value of string, you type:
*name of string*[-1]
[-1] shows the last value like he said in the video i think
tlarson91119 2 years ago
the last character, that is. And if it is a list, evaluates to the last element.
gasto5 2 years ago