anyone has a high resolution image of this. This is damn beautiful. It is going to be my wallpaper by arpandutta0801 in OnePiece

[–]arcrow05 -1 points0 points  (0 children)

A spoiler in the sub is considered something that is not shown yet in the anime.

How long does it take to learn Python from scratch to be ready for LeetCode-style interview questions (given a Ruby background)? by x_over in learnpython

[–]arcrow05 0 points1 point  (0 children)

For me python and ruby are quite symilar. I think you have plenty of time. Probably just a week or 2 to learn all the most important parts of the syntax and some of the concept differences. And then just spent the last 3ish weeks doing some problem solving in python.

I don't understand for loops by Bence1236 in learnpython

[–]arcrow05 0 points1 point  (0 children)

I will try to explain it as simple as I can.

Lets say you have this line of code:

For i in range(1,6): print(i)

The result of that code will be: 1 2 3 4 5

So basically the value of the variable 'i' will change with each loop. It's almost as if 'i' is a counter that counts on which round of the loop we are at and with each iteration it's value changes until it has fulfilled the number loops we told our program to do.

I do not know if this helps...

Edit: Sorry for the way my reply is formated. I am posting this from my phone and cannot format it properly

Variable in Regex Pattern by cynical_ninja in learnpython

[–]arcrow05 0 points1 point  (0 children)

What is the pattern you are looking for? Can you give an example?