인프런 영문 브랜드 로고
인프런 영문 브랜드 로고

Inflearn Community Q&A

hyejin39345565's profile image
hyejin39345565

asked

Getting Started with Programming: Introduction to Python (Inflearn Original)

Numeric (1-2)

외부모듈

Written on

·

202

0

외부 모듈 math 함수 사용시 아래와 같이 오류뜨는데 어떻게 해결해야되나요?

 

  File "d:\python\chapter03_01.py", line 110, in <module>

    print(math,pi)

NameError: name 'pi' is not defined. Did you mean: 'i'?

python

Answer 1

0

niceman님의 프로필 이미지
niceman
Instructor

안녕하세요.

아래 2가지 중 1개자 방식으로 정확히 임포트 되었는지 확인해보세요.

 

from math import *

import math
hyejin39345565's profile image
hyejin39345565

asked

Ask a question