• Hayertjez's Activity

Commented a forum post "Getting started Express Delivery" created by Hayertjez
Not yet, I was working on this problem with someone else which seemed like fun. I will start working
Created a forum post "Getting started Express Delivery"
Reading this task I have no clue how I can approach this problem other than completely randomness.
Liked a comment created by DaveDiFranco for forum post "Skip iterations"
You could use a range https://docs.python.org/2/library/functions.html#range

    for i in range(sta
Commented a forum post "Skip iterations" created by Hayertjez
But how do you skip a iteration? Like oduvan said you could set up a variable at the start. I combin
Liked a comment created by oduvan for forum post "Skip iterations"
you mean

    skip = 0
    for x in pharse:
        if skip:
            skip -= 1
            conti
Commented a forum post "Skip iterations" created by Hayertjez
Yes something like that. Thanks!
Created a forum post "Skip iterations"
Is it possible to skip iterations? I want to do the following: For x in pharse: if x
Commented a forum post "help with diagonals" created by SantiagoSaid
As someone fairly new to programming I have read the docs on [PEP 255]. But I still cannot get a gra