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
- 파이썬 시각화
- 티스토리
- Linux
- 파이썬
- Pandas
- 텐서플로
- 한빛미디어
- 매틀랩
- 한빛미디어서평단
- MySQL
- Blog
- tensorflow
- 독후감
- Tistory
- 통계학
- 시각화
- 서평
- python visualization
- Python
- 딥러닝
- 리눅스
- Ga
- 블로그
- 월간결산
- SQL
- 서평단
- matplotlib
- Visualization
- MATLAB
- Google Analytics
Archives
- Today
- Total
pbj0812의 코딩 일기
[Go] array, slice 본문
0. 목표
- array, slice 사용 숙지
1. 코드
- []안에 숫자를 넣으면 array, 없으면 slice
- append 는 return의 형태이기에 앞에 변수명을 입력하지 않으면 값이 변하지 않음
package main
import "fmt"
//start point
func main() {
names := []string{"a", "b", "c"}
names = append(names, "d")
fmt.Println(names)
}
2. 결과
[a b c d]
3. 참고
'ComputerLanguage_Program > Go' 카테고리의 다른 글
[Go] struct (0) | 2020.03.13 |
---|---|
[Go] map (0) | 2020.03.13 |
[Go] Pointer (0) | 2020.03.13 |
[Go] switch (0) | 2020.03.13 |
[Go] 조건문, variable expression (0) | 2020.03.13 |
Comments