Yes, absolutely! Python's `type()` function works with all sorts of data types- strings, floats, lists, dictionaries, tuples, and many more. For instance, if you have a string variable `strVar = 'Hello, Python!'` and you enter` print(type(strVar))`, it would output <class 'str'>, denoting it is a string variable.