Snippets Collections
import os

path_cwd = os.listdir()
import re

r = re.compile(".*xlsx")                             ## what searching for
new_list = list(filter(r.match, list-name))			## list-name is the list
print(new_list)
star

Mon Jul 04 2022 09:55:34 GMT+0000 (Coordinated Universal Time)

#pytho #list
star

Mon Jul 04 2022 09:54:47 GMT+0000 (Coordinated Universal Time)

#pytho #list

Save snippets that work with our extensions

Available in the Chrome Web Store Get Firefox Add-on Get VS Code extension