Go theorytheory 0/50 · 0%
Standard library · easy

16. Packages: fmt, strconv, time

The everyday standard library.

fmt handles formatted I/O with verbs like %v, %+v and %q. strconv converts between strings and numbers with explicit errors. time provides durations, timers and formatting using the reference layout 2006-01-02 15:04:05.

Check your understanding

  1. 1. Which verb prints field names of a struct?

  2. 2. Go time layouts are based on…