Go Language Learning Note 12: scope (range)

Source: Internet
Author: User
Go Language Learning Note 12: scope (range)

Rang this keyword is used primarily to iterate over arrays, slices, channels, or maps. Returns the index value in the array and the slice, returning key in the map.
This is particularly like Python's way. But it's a bit weird := to use segmentation instead of split in Python in . In Python, range is a function, not a keyword.

package mainimport "fmt"func main() {    nums := []int {10, 20, 30}    sum := 0        for i, num := range nums {        fmt.Println(i, num);        sum += num    }        fmt.Println("sum: ", sum);}

Go Language Learning Note 12: scope (range)

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.