DYDormouse Youngindormouse.hashnode.dev·May 10, 2022 · 1 min readGolang Note2022年5月7日 9:26 The tutorial: https://golang.google.cn/doc/tutorial/getting-started Some shell commands: $ go mod init example/hello $ go run . $ go mod tidy00
DYDormouse Youngindormouse.hashnode.dev·Nov 5, 2021 · 3 min readPython Road - reverse listIn Python programming, we often need to reverse a list. Suppose there is a list: [1, 2, 3, 4, 5], we need to get the inverse sequence list of this list, [5, 4, 3, 2, 1]. First, let us prepare the source list: >>> source_list = [1, 2, 3, 4, 5] Road O...00
DYDormouse Youngindormouse.hashnode.dev·Nov 5, 2021 · 3 min readPython Roads of Reverse ListIn Python programming, we often need to reverse a list. Suppose there is a list: [1, 2, 3, 4, 5], we need to get the inverse sequence list of this list, [5, 4, 3, 2, 1]. First, let us prepare the source list: >>> source_list = [1, 2, 3, 4, 5] Road O...01S