package mainimport "fmt"type Test struct { A string}func main() { test1() test2()}func test1() { a := []int{1,2,3,4} var b []int b = make([]int, len(a)) copy(b, a) fmt.Println...
#create a tuple
tuplex = (2, 4, 3, 5, 4, 6, 7, 8, 6, 1)
#used tuple[start:stop] the start index is inclusive and the stop index
_slice = tuplex[3:5]
#is exclusive
print(_slice)
#if the start inde...