python 변수 가 빈 목록 을 초기 화 하 는 예

python 은 new 를 쓸 수 없습니다.loss=old_loss=[]
이 두 변 수 는 실제로 같은 list 입 니 다.
newloss=[]
Old_loss=[]
다음 데이터 파일 을 예 로 들 면:

def analyze_mmr(fn):
 #      
 new_loss = []
 old_loss = []
 #      
 new_loss = old_loss =[]
 with open(fn, encoding='utf8') as f:
  for line in f:
   parts = line.split('=')
   if parts[0] == 'new_loss':
    print(parts[0])
    print('add_new_loss')
    new_loss.append(parts[1].strip())
   elif parts[0] == 'old_loss':
    old_loss.append(parts[1].strip())
   else:
    pass
 return new_loss, old_loss
운행 하 다.

n, o = analyze('../example.txt')
초기 화 방법 1 출력 n=[1,2],o=[3,4]
초기 화 방법 2 출력 n=[1,2,3,4],o=[1,2,3,4]
테스트 문서:

example.txt

new_loss=1

old_loss=3

new_loss=2

old_loss=4
이 python 변수 가 빈 목록 을 초기 화 하 는 예 는 바로 작은 편집 이 여러분 에 게 공유 하 는 모든 내용 입 니 다.참고 가 되 고 저 희 를 많이 사랑 해 주 셨 으 면 좋 겠 습 니 다.

좋은 웹페이지 즐겨찾기