Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- github markdown
- 출처: 자바의 신 8장
- Morphological analysis #Corpus
- 파이콘
- Kakao
- taskkill
- 카우치코딩 #couchcoding #6주포트폴리오 #6주협업프로젝트v
- 플젝후체크
- #스파르타코딩클럽후기 #내일배움캠프후기
- gitbash
- 자바파이썬
- 클라이언트사이드렌더링
- khaiii
- 서버사이드렌더링
- github
- 필사
- 모바일웹스킨
- PID
- SSR
- terminate
- Machine Learning
- address
- Technical Writing
- expression statement is not assignment or call html
- 비동기
- Anaconda
- 카우치코딩 #couchcoding #6주포트폴리오 #6주협업프로젝트
- 마크다운
- 파이썬
- 코딩온라인
Archives
- Today
- Total
개발 일기
[Udacity Python] Characteristics / Assignment Functions 본문
#Python's Characteristics
- Case Sensitive
- Spacing Matters : e.g. O Print(3*7) X Print (3*7-1)
#How to define variables? All lower case letters and underscores to separate words (E.g. my_height = 58)
#Assignment Functions
Once you assign 'Rainfall -= rainfall * 0.1' , rainfall's value is switched to the assigned (90% of rainfall = 4500000)
You may use 'rainfall = rainfall + reservoir_volume'. but taking advantage of assignment operators, like 'rainfall +- = reservoir_volume' is more concise
From: Udacity - Introduction to Python
'Tech > Python' 카테고리의 다른 글
[Udacity Python] Lesson 6 - Git Bash 에 Anaconda 설치하기 (0) | 2021.07.23 |
---|
Comments