파이썬 Y 축이 Matplotlib에서 정수만 사용하도록 강제하는 방법은 무엇입니까?
matplotlib.pyplot 모듈을 사용하여 히스토그램을 플로팅하고 있는데 어떻게 y 축 레이블에 소수 (예 : 0., 0.5)가 아닌 정수 (예 : 0, 1, 2, 3 등) 만 표시하도록 강제 할 수 있는지 궁금합니다. , 1., 1.5, 2. 등). def doMakeChart(item, x): if len(x)==1: return filename = "C:\Users\me\maxbyte3\charts\\" bins=logspace(0.1, 10, 100) plt.hist(x, bins=bins, facecolor='green', alpha=0.75) plt.gca().set_xscale("log") plt.xlabel('Size (Bytes)') plt.ylabel('Count') plt.sup..
2021. 2. 10.
파이썬 MySQLdb conn.autocommit (True) 정보
python 2.7 64bit, MySQL-python-1.2.3.win-amd64-py2.7.exe를 설치했습니다. 다음 코드를 사용하여 데이터를 삽입합니다. class postcon: def POST(self): conn=MySQLdb.connect(host="localhost",user="root",passwd="mysql",db="dang",charset="utf8") cursor = conn.cursor() n = cursor.execute("insert into d_message (mid,title,content,image) values(2,'xx','ccc','fff')") cursor.close() conn.close() if n: raise web.seeother('/') 이로 인해 n이..
2021. 2. 10.