package main import "fmt" func main() { m := map[string]string{ "PurpleSchool": "https://purpleschool.ru", } m["Google"] = "https://google.com" m["Gmail"] = "https://gmail.com" fmt.Println(m) delete(m, "Gmail") for _, v := range m { fmt.Println(v) } }