Python(4)
-
파이썬 인터프리터는 어디에?
import sys print(sys.executable)
2022.04.06 -
[Pandas] DataFrame 공백 제거
df = df.apply(lambda x: x.str.strip(), axis=1)
2021.09.17 -
pyplot import 오류
pyplot import 하면 python.exe 중지됨 pyqt 설치하면 해결됨 https://github.com/ContinuumIO/anaconda-issues/issues/4046
2018.06.25 -
[flask] favicon 오류
stackoverflow.com/questions/1321878/how-to-prevent-favicon-ico-requests How to prevent favicon.ico requests? I don't have a favicon.ico, but my browser always makes a request for it. Is it possible to prevent the browser from making a request for the favicon from my site? Maybe some META-TAG in the HTML h... stackoverflow.com
2018.02.19