package main
import "fmt"
func main() {
// Create a slice with a length of 5 elements.
slice := make([]string, 5)
slice[0] = "Apple"
slice[1] = "Orange"
slice[2] = "Banana"
slice[3] = "Grape"
slice[4] = "Plum"
// You can‘t access an index of a slice beyond its length.
//
slice[5] = "Runtime error"
// Error: panic: runtime error: index out of range
fmt.Println(slice)
}
4.slice
Posted cucy
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了4.slice相关的知识,希望对你有一定的参考价值。
以上是关于4.slice的主要内容,如果未能解决你的问题,请参考以下文章
NotImplementedError:无法将符号张量 (lstm_4/strided_slice:0) 转换为 numpy 数组