14:06 You can achieve the same filtering with list comprehensions: filtered_list = [x for x in names if x.startswith("j")] >> "joe", "jean" But you can also capitalize it: filtered_cap = [x.capitalize() for x in names if x.startswith("j")] >> "Joe", "Jean" Great Tutorials btw, learned a lot! josephturi
14:06 You can achieve the same filtering with list comprehensions: filtered_list = [x for x in names if x.startswith("j")] >> "joe", "jean" But you can also capitalize it: filtered_cap = [x.capitalize() for x in names if x.startswith("j")] >> "Joe", "Jean" Great Tutorials btw, learned a lot!
Good tut! What the IDE you are using? archtaurus
Good tut! What the IDE you are using?