Welcome toVigges Developer Community-Open, Learning,Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
1.1k views
in Technique[技术] by (71.8m points)

python - The differences' between the operator "==" and "="

The differences' between the operator "==" and "=". When would each be used? Why would each be used?

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)
In python and other languages like C, 
     "=" is a assignment operator and is used to assign a value to a variable.
       Example: a=2 # the value of a is 2

whereas "==" is Comparison operator and is used to check whether 2 expressions give the same value .Equality check returns true if it succeeds and else return false.
  Example: a=2 b=3 c=2 
             a==b (#false because 2 is not equal to 3) 
               a==c (#true because 2 is equal to 2)

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to Vigges Developer Community for programmer and developer-Open, Learning and Share
...