Estou tentando executar um módulo no console. A estrutura do meu diretório é esta:
Estou tentando executar o módulo p_03_using_bisection_search.py
, no problem_set_02
diretório usando:
$ python3 p_03_using_bisection_search.py
O código dentro 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()
Estou importando uma função na p_02_paying_debt_off_in_a_year.py
qual o código é:
__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()
Eu estou recebendo o seguinte erro:
ModuleNotFoundError: No module named '__main__.p_02_paying_debt_off_in_a_year'; '__main__' is not a package
Não tenho ideia de como resolver esse problema. Tentei adicionar um __init__.py
arquivo, mas ele ainda não está funcionando.
eval(input(...
foi sugerida por 2to3. Eu fiz isso comigo hoje. feliz que eu não segui-lo de sugestões blindling
eval(input...
provavelmente não é uma ótima idéia. Gostaria de analisá-lo em vez de abrir a oportunidade para execução arbitrária de código.