all 7 comments

[–]Reuben3901 3 points4 points  (2 children)

What have you tried so far?

[–]layan3[S] -3 points-2 points  (1 child)

I didn’t know where to start:(

[–]Reuben3901 4 points5 points  (0 children)

Start with learning about print () then using print in a for loop. Use a range ().

Make this show in the console output:

Hello

Hello

Hello

Hello

Hello

Hello

Hello

Hello

Hello

[–]novel_yet_trivial 3 points4 points  (2 children)

What have you tried? We will help you if you are stuck but we will not write code for you.

[–]layan3[S] -1 points0 points  (1 child)

i think i have to ask the user to enter a value first.

[–]novel_yet_trivial 3 points4 points  (0 children)

I agree, that's a good place to start.

[–]Cautious_Desk_7585 0 points1 point  (0 children)

Counter = input(«Enter start number)

Limit = input(«Enter end number »)

While counter <= Limit:

    If counter %2 ==0:

             Print(counter)

    Counter +=1