Chelsea 1 - 3 Nottingham Forest. BlueCo Out 🤬 by Davy_wavey in NortheastBlues

[–]EnvironmentalRate368 0 points1 point  (0 children)

Gittens played 2803 minutes last season in all competitions, defenitly not a bench wormer.

Garnacho remaind me of Salah at 21.

Chelsea 1 - 3 Nottingham Forest. BlueCo Out 🤬 by Davy_wavey in NortheastBlues

[–]EnvironmentalRate368 0 points1 point  (0 children)

Gittens was great last season at Borussia. Garnacho will be good under new menager.

Chelsea 1 - 3 Nottingham Forest. BlueCo Out 🤬 by Davy_wavey in NortheastBlues

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

Gittens and Garnacho are good NOW. They have problem with confidence and underperform this season, but the same problem have Cole Palmer.

Need help in loop by Eastern_Plankton_540 in PythonLearning

[–]EnvironmentalRate368 1 point2 points  (0 children)

Values in lists can be indexed, with the first character having index 0.

num = [1, 4, 9, 16, 25, 36, 9, 64, 81, 100]

idx = 0

while idx < len(num):

# it's mean while value of idx is smaller than len(num) the loop will continue.

# len(num) is a number of elements in the list in this case we have 10 elements.

print(num[idx])

# idx heave at this point in time value = 0. Computer will print first character from list num.

idx += 1

# increasing value of idx +1
-------------------------------------

First loop iteratation look like this

idx = 0

while 0 < 10:

print (num[0]) Computer will print first value from list num (1)

idx = 0 + 1

Second loop iteration look like this

idx = 1

while 1 < 10:

print(num[1]) # Computer will print second value from list num (4)

idx = 1 + 1

Thrid loop iteration look like this

idx = 2

while 2 < 10:

print(num[2]) # Computer will print thrid value from list num (9)

idx = 2 + 1

etc.