> For the complete documentation index, see [llms.txt](https://wskdsgcf.gitbook.io/mastering-go-zh-cn/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://wskdsgcf.gitbook.io/mastering-go-zh-cn/3-go-ji-ben-shu-ju-lei-xing/03.1.md).

# 03.1 Go循环

每个编程语言都有一种进行循环的方式，Go也不例外。Go提供了for循环，用来对多种数据类型进行遍历。

> Go没有提供while关键字。但是，Go的for循环语句完全可以替代while循环。
