[데이터캠프] 문과생 비전공자 파이썬 공부하기 Day 2
데이터캠프 파이썬 공부 2일차.. 여기 티스토리 말고 네이버 블로그에 전에 소개한 적이 있던 solo learn으로 파이썬 공부하는 것보다 데이터캠프로 공부하는 게 더 재밌는거 같다. PC로 4분활 화면으로 봐서 그런가 ㅎㅎ 아무튼 2일차 시작 Variable Assignment In Python, a variable allows you to refer to a value with a name. To create a variable use =, like this example: x = 5 You can now use the name of this variable, x, instead of the actual value, 5. Remember, = in Python means assignment, it d..