Engineering WIKI/Python51 [Python] 2.7 Encoding 에러 해결 파이썬 2.7 인코딩 에러 해결 (UnicodeDecodeError: 'ascii' codec can't decode byte 0xc7 in position 0: ordinal) 스크립트 첫줄에 파일의 인코딩을 명시 #-*- coding: utf-8 -*- C:\Python27\Lib\site.py Encoding utf-8 수정 def setencoding(): """Set the string encoding used by the Unicode implementation. The default is 'ascii', but if you're willing to experiment, you can change this.""" encoding = "utf-8" # Default value set by _Py.. 2019. 1. 26. [Python] 엑셀 코드(xlsx 파일 만들기) import xlsxwriter book = xlsxwriter.Workbook("2-1.xlsx") # 엑셀 파일 이름 지정 sheet1 = book.add_worksheet() # Sheet 만들기 file_open = open("2-1.txt","r") # txt 파일 읽기 cnt = 0 # row는 0 for lines in file_open: line = lines.split("\t") # 탭으로 자르기 if cnt > 1048576: # Row 수가 1048576을 넘으면Sheet1 추가 sheet1 = book.add_worksheet() if str(line[0]).strip() !="": # if line[0].strip이 공백이 아니면 sheet1.write(cnt,0,str(line[.. 2018. 10. 15. [Python]Using Python file in Shell Script [ 쉘 스크립트 내에서 파이썬 프로그램 실행 ] Method 1 python 파일이 있다고 가정하십시오. hello.py 를 포함하는 job.sh 파일을 만듭니다. #!/bin/bash python hello.py $ chmod +x job.sh ← 실행 가능한 파일로 변경 $ ./job.sh ← 실행 2018. 8. 5. 이전 1 ··· 6 7 8 9 다음