As the title says, is there a way to get the internal data type of a variable in Python 3?
In C # I can compare it in the following way:
var str = "Strings";
if (str.GetType() == typeof(string))
Debug.WriteLine("str es un string.");
But I can not find a way to do it in python.