C와 C ++로 동일한 프로그램 (텍스트 파일 열기 및 내용 표시)을 작성했습니다. 이제 Python (Linux 시스템에서)에서 동일한 작업을 수행하고 있습니다.
C 프로그램에서 코드를 사용했습니다.
if (argc != 2) {
/* exit program */
}
질문 : 인수의 수를 확인하기 위해 Python에서 사용되는 것은 무엇입니까?
#!/usr/bin/python
import sys
try:
in_file = open(sys.argv[1], "r")
except:
sys.exit("ERROR. Did you make a mistake in the spelling")
text = in_file.read()
print text
in_file.close()
전류 출력 :
./python names.txt = Displays text file (correct)
./python nam = error message: stated from the sys.ext line (correct)
./python = error message: stated from the sys.ext line (wrong: want it to be a
separate error message stating *no file name input*)