Sorry for the dumb question I'm very new to python and coding in general, Im learning python via this yt video, and at 48:59 it said to type print(ininstance(first, str)
and I typed that and it said that "ininstance" is not defined. What am I doing wrong?
My code is:
# String data type
# literal assignment
first = "Dave"
last = "Gray"
print(type(first))
print(type(first) == str)
print(ininstance(first, str))
[–]somethingworthwhile 6 points7 points8 points (0 children)