import os
def fcount(path):
#Counts the number of files in a directory - коли
count = 0
for f in os.listdir(path):
if os.path.isfile(os.path.join(path, f)):
count += 1
return count
path = r"C:\Users\Максим Шуваев\Documents\SOURCREAM_1"
path2 = r"C:\Users\Максим Шуваев\Documents\SOURCREAM_2"
print (fcount(path))
print (fcount(path2))
d = fcount(path) + fcount(path2)
a = float( input('Введите отфасованное количество продукта! '))
w = d / a
print (w)
# python import.py
14
14
Введите отфасованное количество продукта! 30
0.9333333333333333
# python import.py
Введите отфасованное количество продукта! 5
Traceback (most recent call last):
File "C:\Python\import.py", line 12, in <module>
d = a / c
TypeError: unsupported operand type(s) for /: 'str' and 'float'