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 | 31 |
Tags
- 카우치코딩 #couchcoding #6주포트폴리오 #6주협업프로젝트
- 파이콘
- github
- gitbash
- #스파르타코딩클럽후기 #내일배움캠프후기
- 자바파이썬
- Morphological analysis #Corpus
- 클라이언트사이드렌더링
- Technical Writing
- expression statement is not assignment or call html
- Machine Learning
- PID
- 출처: 자바의 신 8장
- 카우치코딩 #couchcoding #6주포트폴리오 #6주협업프로젝트v
- 마크다운
- 플젝후체크
- 파이썬
- 비동기
- github markdown
- taskkill
- 모바일웹스킨
- Kakao
- Anaconda
- 필사
- terminate
- address
- SSR
- 서버사이드렌더링
- 코딩온라인
- khaiii
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