(Cue the "I have seen this cleavage more times than my parents" copypasta)
(Cue the "I have seen this cleavage more times than my parents" copypasta)
Although i don't know half of the things listed there.
Although i don't know half of the things listed there.
x[2]= 'a' <- THIS DOESN'T WORK, this means that whatever was in x, at it's index 2, I'm trying to replace whatever was there with the letter a, which would make the original:
x is "woa" <- this is what doesn't work
x[2]= 'a' <- THIS DOESN'T WORK, this means that whatever was in x, at it's index 2, I'm trying to replace whatever was there with the letter a, which would make the original:
x is "woa" <- this is what doesn't work
x = "wow"
x = x + "socool" <- DOES work, concatenating actually work like [Take x, value in is "wow", add "socool", new string is "wowsocool", feed that to x, now "wow" is lost]
Cont...
x = "wow"
x = x + "socool" <- DOES work, concatenating actually work like [Take x, value in is "wow", add "socool", new string is "wowsocool", feed that to x, now "wow" is lost]
Cont...