Sto cercando di eseguire un modulo dalla console. La struttura della mia directory è questa:
Sto cercando di eseguire il modulo p_03_using_bisection_search.py
, dalla problem_set_02
directory utilizzando:
$ python3 p_03_using_bisection_search.py
Il codice all'interno 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()
Sto importando una funzione in p_02_paying_debt_off_in_a_year.py
cui il codice è:
__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()
Ricevo il seguente errore:
ModuleNotFoundError: No module named '__main__.p_02_paying_debt_off_in_a_year'; '__main__' is not a package
Non ho idea di come risolvere questo problema. Ho provato ad aggiungere un __init__.py
file, ma non funziona ancora.
eval(input(...
bit è stato suggerito da 2to3. L'ho fatto fare a me oggi. felice di non seguire i suoi suggerimenti ciechi
eval(input...
probabilmente non è una grande idea. Lo analizzerei invece di aprire l'opportunità per l'esecuzione arbitraria di codice.