본문 바로가기

code8.3

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.
Flutter 플러터: 파일의 파일 이름 가져오기, Flutter: Get the filename of a File 질문 이것은 꽤 간단할 것으로 생각했지만, 해결할 수 없는 것 같습니다. File file이 있고 그 안에는 file.path라는 경로가 있습니다. 이 경로는 /storage/emulated/0/Android/data/my_app/files/Pictures/ca04f332.png와 같은 것을 출력하지만, ca04f332.png만 얻을 수 있는 방법을 찾을 수 없습니다. 답변 다트 basename 함수를 사용할 수 있습니다. 이 함수는 path 라이브러리에서 제공됩니다: import 'package:path/path.dart'; File file = new File("/dir1/dir2/file.ext"); String basename = basename(file.path); # file.ext 2023. 8. 16.
Python 문자열에서 여러 개의 공백을 간단히 제거하는 방법이 있나요?, Is there a simple way to remove multiple spaces in a string? 질문 다음 문자열을 가정해보십시오: The fox jumped over the log. 다음으로 변환됩니다: The fox jumped over the log. 리스트를 나누거나 나열하지 않고 이를 달성하기 위한 가장 간단한 방법(1-2줄)은 무엇입니까? 답변 >>> import re >>> re.sub(' +', ' ', 'The quick brown fox') 'The quick brown fox' 2023. 8. 1.