Я пытаюсь запустить модуль из консоли. Структура моего каталога такая:
Я пытаюсь запустить модуль p_03_using_bisection_search.py
из problem_set_02
каталога, используя:
$ python3 p_03_using_bisection_search.py
Код внутри p_03_using_bisection_search.py
:
__author__ = 'm'
from .p_02_paying_debt_off_in_a_year import compute_balance_after
def compute_bounds(balance: float,
annual_interest_rate: float) -> (float, float):
# there is code here, but I have omitted it to save space
pass
def compute_lowest_payment(balance: float,
annual_interest_rate: float) -> float:
# there is code here, but I have omitted it to save space
pass
def main():
balance = eval(input('Enter the initial balance: '))
annual_interest_rate = eval(input('Enter the annual interest rate: '))
lowest_payment = compute_lowest_payment(balance, annual_interest_rate)
print('Lowest Payment: ' + str(lowest_payment))
if __name__ == '__main__':
main()
Я импортирую функцию, в p_02_paying_debt_off_in_a_year.py
которой код:
__author__ = 'm'
def compute_balance(balance: float,
fixed_payment: float,
annual_interest_rate: float) -> float:
# this is code that has been omitted
pass
def compute_balance_after(balance: float,
fixed_payment: float,
annual_interest_rate: float,
months: int=12) -> float:
# Omitted code
pass
def compute_fixed_monthly_payment(balance: float,
annual_interest_rate: float) -> float:
# omitted code
pass
def main():
balance = eval(input('Enter the initial balance: '))
annual_interest_rate = eval(
input('Enter the annual interest rate as a decimal: '))
lowest_payment = compute_fixed_monthly_payment(balance,
annual_interest_rate)
print('Lowest Payment: ' + str(lowest_payment))
if __name__ == '__main__':
main()
Я получаю следующую ошибку:
ModuleNotFoundError: No module named '__main__.p_02_paying_debt_off_in_a_year'; '__main__' is not a package
Я понятия не имею, как решить эту проблему. Я попытался добавить __init__.py
файл, но он все еще не работает.
eval(input(...
бит был предложен 2to3. Я сделал это сегодня со мной. рад, что я не следую его предложениям ослепительно
eval(input...
вероятно, это не очень хорошая идея. Я бы просто проанализировал это вместо того, чтобы открыть возможность для выполнения произвольного кода.