standardised naming of test recipe scripts

This commit is contained in:
PatchOfScotland
2023-03-31 11:41:38 +02:00
parent 18d579da22
commit 0c6977ecd3
4 changed files with 20 additions and 14 deletions

5
counting_files.py Normal file
View File

@ -0,0 +1,5 @@
import os
dir_to_count = "."
print(f"There are {len(os.listdir(dir_to_count))} files in the directory.")