4.3.8. 파이썬 변수(Variables)
=(대입연산자)는 우변의 값을 좌변에 넣으라는 뜻 입니다.
counter = 100 # An integer assignment
miles = 1000.0 # A floating point
name = "John" # A string
print counter
print miles
print namea = b = c = 1a,b,c = 1,2,"john"Last updated
Was this helpful?