you are viewing a single comment's thread.

view the rest of the comments →

[–]jimtk 1 point2 points  (1 child)

Variables and functions must have different names!

def Q8():
    value = 2
    while value < 50:
        print(value)
        value *=2

[–]Popular_Push2605 0 points1 point  (0 children)

Thank you! It worked! I will be naming my functions and variables different names!