본문 바로가기

1.344

Python 틱 라벨 글꼴 크기를 변경하는 방법, How to change tick label font size 질문 matplotlib 그림에서 ax1.set_xticklabels()를 사용하여 눈금 레이블의 글꼴 크기를 작게 만들 수 있을까요? 또한, 수평에서 수직으로 어떻게 회전시킬 수 있을까요? 답변 실제로 간단한 방법이 있습니다. 방금 찾았어요: import matplotlib.pyplot as plt # 그림을 준비합니다. fig, ax = plt.subplots() # 작은 눈금 레이블의 글꼴 크기를 변경합니다. ax.tick_params(axis='both', which='major', labelsize=10) ax.tick_params(axis='both', which='minor', labelsize=8) 하지만 이것은 질문의 label 부분에 대한 크기만 대답합니다. 2023. 10. 26.
Python 파이썬에서는 멀티라인 람다 함수를 지원하지 않는 이유는 무엇인가요?, No Multiline Lambda in Python: Why not? 질문 I've heard it said that multiline lambdas can't be added in Python because they would clash syntactically with the other syntax constructs in Python. I was thinking about this on the bus today and realized I couldn't think of a single Python construct that multiline lambdas clash with. Given that I know the language pretty well, this surprised me. Now, I'm sure Guido had a reason for not incl.. 2023. 10. 26.
Python "not(True) in [False, True]"가 왜 False를 반환합니까?, Why does "not(True) in [False, True]" return False? 질문 만약 이렇게 한다면: >>> False in [False, True] True 그것은 True를 반환합니다. 단순히 False가 리스트 안에 있기 때문입니다. 하지만 이렇게 한다면: >>> not(True) in [False, True] False 그것은 False를 반환합니다. 반면에 not(True)는 False와 동일합니다: >>> not(True) False 왜 그럴까요? 답변 연산자 우선순위 2.x, 3.x. not의 우선순위는 in보다 낮습니다. 따라서 다음과 동일합니다: >>> not ((True) in [False, True]) False 원하는 결과는 다음과 같습니다: >>> (not True) in [False, True] True @Ben이 가리키듯이: not(True) 대신에 .. 2023. 10. 26.
Python numpy.random.seed(0)은 무엇을 하는 것인가요?, What does numpy.random.seed(0) do? 질문 What does np.random.seed do? np.random.seed(0) 답변 np.random.seed(0)은 난수를 예측 가능하게 만듭니다. >>> numpy.random.seed(0) ; numpy.random.rand(4) array([ 0.55, 0.72, 0.6 , 0.54]) >>> numpy.random.seed(0) ; numpy.random.rand(4) array([ 0.55, 0.72, 0.6 , 0.54]) 시드를 재설정하면 매번 동일한 숫자 세트가 나타납니다. 만약 랜덤 시드가 재설정되지 않으면, 매번 호출할 때마다 다른 숫자가 나타납니다: >>> numpy.random.rand(4) array([ 0.42, 0.65, 0.44, 0.89]) >>> numpy.r.. 2023. 10. 26.