function9.2 Python 명령 줄에서 함수 실행하기, Run function from the command line 질문 나는 이 코드를 가지고 있습니다: def hello(): return 'Hi :)' 이 코드를 어떻게 명령 줄에서 직접 실행할 수 있을까요? 답변 다음은 -c (명령어) 인수를 사용하는 경우입니다 (파일 이름이 foo.py라고 가정합니다): $ python -c 'import foo; print foo.hello()' 또는 네임스페이스 오염에 대해 신경 쓰지 않는 경우: $ python -c 'from foo import *; print hello()' 중간 지점은 다음과 같습니다: $ python -c 'from foo import hello; print hello()' 2023. 10. 5. 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. 이전 1 다음