나의 노력(42)
-
탑 - JAVA
answer ->
2020.04.20 -
서울에서 김서방 찾기 - JAVA
ANSWER ->
2020.04.05 -
같은 숫자는 싫어! - JAVA
answer ->
2020.02.05 -
수박수박수박수? - JAVA
answer ->
2020.02.05 -
가운데 글자 가져오기 - JAVA
answer ->
2020.02.05 -
matplotlib(1)
import numpy as np import matplotlib.pyplot as plt from matplotlib import rc,font_manager import matplotlib.path as mpath font_path = "C:/Windows/Fonts/H2GTRM.TTF" font_name = font_manager.FontProperties(fname=font_path).get_name() plt.rc('font',family=font_name) x=np.linspace(0,6,1000) y1=np.sin(x) y2=np.cos(x) plt.xlabel('x축') plt.ylabel('y축') plt.plot(x,y1,c='0.0',lw=3,label='sin(x)') plt.plo..
2019.09.25