#python #anaconda #jupyter-notebook #visual-code #html #css #javascript #http

제목step8 사용자 정의 모듐활용방법 이해하기 오류2020-04-13 14:29
작성자

def convert_to_celsius(fahrenheit): 

    return (fahrenheit - 32) * 5/9 

def convert_to_fahrenheit(celsius): 

    return (celsius * 1.8) + 32





모듈을 위와 같이 하라는대로 수정했는데 계속 제가 수정한 파일에  convert_to_fahrenheit()가 no attribute 라면서 오류가 뜹니다.

댓글