Welcome to 16892 Developer Community-Open, Learning,Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

Number = input("Type Your Factor number Here: ")
placeholder = int(Number)
a = 1
placeholder/a = x
for i in range(placeholder+1):
    if isinstance(x, int):
        print(placeholder/a)
    a += 1

SyntaxError: cannot assign to operator

it is giving me this error because I can not divide the"placeholder" variable by a.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
3.7k views
Welcome To Ask or Share your Answers For Others

1 Answer

You're trying to assign a variable "x", which is not defined, to an operation "placeholder/a" which is incorrect. We assign something to a variable, for example, placeholder = x.

Another thing, you're dividing placeholder by a (a =1) so you can easily remove the division and make: placeholder = x.

PS: Don't forget to define "x".


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to 16892 Developer Community-Open, Learning and Share
...