728x90
import sys
sys.path.append('/Users/joopark/python202402/game')
import game.user as u
from game.user import User
user = u.User(username="pey", rank="dolg")
user.print_info()
######################################
Traceback (most recent call last):
File "/Users/id/python202402/chapter3_python_02.py", line 15, in <module>
from game.user import User
ImportError: cannot import name 'User' from 'game.user' (/Users/id/python202402/game/user.py)
File "/Users/id/python202402/chapter3_python_02.py", line 15, in <module>
from game.user import User
ImportError: cannot import name 'User' from 'game.user' (/Users/id/python202402/game/user.py)
왜 못찾지?
위치:https://skillflo.io/classroom/10746/10618/content/62546 9:35
참 강의가 불친절하다 . 강의안은 있긴 한데 실습 스크립트가 없어서 강의 잠깐 멈추고 치고 다시 들으면서 실행해 비교하고 잘 안되고 참 손이 너무 많이 가는데 어디서 문제인지 못찾으면 그냥 시간을 보내야 한다.
#외부 라이브러리
import pandas as pd
a1 = {"name": ["a", "b","d"],
"hp": ["144","123","131"] }
Traceback (most recent call last):
File "/Users/id/python202402/chapter3_python_02.py", line 51, in <module>
import pandas as pd
^^^^^^^^^^^^^^^^^^^
ModuleNotFoundError: No module named 'pandas'
이번엔 임포트가 안된다. 도통..
그런데 새로 배운거 하나 있다 가상환경 만드는 법 그리고 표준 함수 그리고 에러 컨트롤
try:
print(f"fdf : {len("rfrd")}")
except Exception as e:
print(f"err : , {e}")
-->
err : , division by zero
try:
print(f"fdf : {len("rfrd")}")
except Exception as e:
print(f"err : , {e}")
##################3
print(f"fdf : {len("rfrd")}")
^^^^
SyntaxError: f-string: unmatched '('
^^^^
SyntaxError: f-string: unmatched '('
ln1 = len("rfrd")
print(f"rfrd lenth : {ln1}")
--->
rfrd lenth : 4
conda create -n myenv02
#conda activate myenv02
#conda deactivate
#pip freeze
파이썬 인터프리터 확인
Cmd Shift P
728x90