You could use glob to perform filename pattern matching, where * matches zero or more characters in a segment of a name. The following text would find CSV files matching the naming format in your example in the directory specified in the code:
import glob
import os
csv_dir = r"C:\CSVs"
csv_files = glob.glob(os.path.join(csv_dir, "Development_*.csv")
If you know there will only be 1 CSV then you can take the first element of the list, as such:
csv_file = csv_files[0]
Otherwise, it may be best to sort by creation date and select the newest, e.g.
csv_files.sort(key=os.path.getctime)
csv_file = csv_files[-1]
Having obtained the path to the CSV, you can now read it in whichever way is most appropriate for your needs, for example, by using the csv package: https://docs.python.org/3/library/csv.html