When creating a formatted string, which verb should you use to call the String () string method of a custom type?
%s
%b
%v
%string
In Go, the %s verb is used to format a string. When used with a custom type that has a String() method defined, the String() method will be automatically called and its return value will be used in the formatted string.