在Python中,可以通过打印变量的类型来分析数据类型来调试程序,例如
print type(test_var)
朱莉娅也有类似的东西吗?我在向二维数组分配值时遇到困难,了解每个变量的确切类型会有所帮助。
您想要
typeof
isa
julia> a = 2 2 julia> typeof(a) Int64 julia> typeof("haha") String julia> typeof(typeof("haha")) DataType julia> typeof(Set([1,3,4])) Set{Int64} julia> 1 isa Number true julia> 1 isa String false julia> "1" isa Number false julia> "1" isa String true
您可能还想使用
@show