# Look into this Python documentation link # https://docs.python.org/3/library/stdtypes.html#string-methods # if not, use dir for a sting object stuff = 'Hello World!' print(type(stuff)) print(dir(stuff))