GoConversion de Types en GoComment convertir les types en Goint64 🠮 stringFormatInt1 strconv.FormatInt(i int64, base int) Itoa1 2 strconv.Itoa(i int) // Itoa is equivalent to FormatInt(int64(i), 10). string 🠮 int64ParseInt1 strconv.ParseInt(s string, base int, bitSize int) Atoi1 2 strconv.Atoi(s string) // Atoi is equivalent to ParseInt(s, 10, 0), converted to type int. string 🠮 TimePour le layout.Pour la location.Parse1 time.Parse(layout, value string) ParseInLocation1 time.ParseInLocation(layout, value string, loc *Location) Time 🠮 stringPour le layout.Time.Format1 2 var t time.Time t.Format(layout string)