julia> d = Dict{Real, String}(13=>"13", 1.3=>"1.3")
Dict{Real,String} with 2 entries:
13 => "13"
1.3 => "1.3"
julia> delete!(d, 13)
ERROR: MethodError: no method matching delete!(::Dict{Real,String}, ::Int64)
You may have intended to import Base.delete!