Я пытаюсь получить доступ к файлу, Maxoflist.py
в каталоге, используя vs-код.Я ожидаю, что максимальное значение в списке будет напечатано, но это не так.Ошибка не возникает, и функции, определенные в другом файле, shipping.py
, работают нормально.
import shipping
import Maxoflist #imported the entire module shippinng
shipping.calc_shipping() #working good
findmaxoflist() #not working
Maxoflist.py
:
def findmaxoflist():
Items = [5,61,7,2,4,9,1]
Max = Items[0]
for num in Items:
if Max < num:
Max = num
print(f"Maximum Number is: {Max}")
findmaxoflist()
shipping.py
:
def calc_shipping(): #working good when imported
print("Callin the calculate shipping")