하루의 쉼터

[Chapter02] 변수 더하기 본문

Study/OReilly

[Chapter02] 변수 더하기

Changun An 2020. 12. 5. 21:32
반응형

0. Explanatory notes

변수 타입이 없어서 새롭게 느껴졌음, print문도 새로운 형태이지 않나 싶음.

print 사용 자체는 C에 느낌도 가지고 있음.

1. Code :

x=5
y=x+12
y
print("y : %d "%(y))
print("x : %d"%(x))
print("y_1 :",y)

2. Result

 

github :

github.com/Anchangun/Python_Study/tree/main/OReilly/Introduction_Python/Chapter_02/Example_of_Using_variables

 

Anchangun/Python_Study

Contribute to Anchangun/Python_Study development by creating an account on GitHub.

github.com

 

반응형

'Study > OReilly' 카테고리의 다른 글

[Chapter02] 리스트 사용  (0) 2020.12.05
[Chapter02] 변수 타입 사용 예제  (0) 2020.12.05
[Chapter02] 다중 변수 할당  (0) 2020.12.05
[Chapter01] Hi Python  (0) 2020.12.05
Comments