Go中 func main() { var i int var b int = 10 c := 10 d := "fds" h := 'A' e, f := "ff", 12 g := byte('a') fmt.Println(i, b, c, d, h, e, f, g, gh) }
pythonpython
a=10 b="fd" c,d="dd",123