- Go Machine Learning Projects
- Xuanyi Chew
- 105字
- 2021-06-10 18:46:32
Values
A value is what a program deals with. If you wrote a calculator program, then the values of the program are numbers. If you wrote a text search program, then the values are strings.
The programs we deal with nowadays as programmers are much more complicated than calculators. We deal with different types of values, ranging from number types (int, float64, and so on) to text (string).
A variable holds a value:
var a int = 1
The preceding line indicates that a is a variable that holds an int with the value 1. We've seen previous examples with the "Hello World" string.
推薦閱讀
- 程序設計缺陷分析與實踐
- 精通Windows Vista必讀
- Hands-On Neural Networks with Keras
- 計算機圖形圖像處理:Photoshop CS3
- 深度學習中的圖像分類與對抗技術
- AWS Certified SysOps Administrator:Associate Guide
- 永磁同步電動機變頻調速系統及其控制(第2版)
- 統計策略搜索強化學習方法及應用
- 影視后期編輯與合成
- Practical Big Data Analytics
- RedHat Linux用戶基礎
- 分析力!專業Excel的制作與分析實用法則
- R Machine Learning Projects
- Working with Linux:Quick Hacks for the Command Line
- C++程序設計基礎(上)