320x100
secret = '27156231'
secretList =[]
solvedList = ''
for cha in secret:
secretList.append(int(cha))
secretList.reverse()
print(secretList)
val = secretList[0] * secretList[1]
secretList.insert(2, val)
print(secretList)
print()
val = secretList[3] * secretList[4]
secretList.insert(5, val)
print(secretList)
print()
val = secretList[6] * secretList[7]
secretList.insert(8,val)
print(secretList)
print()
val = secretList[9] * secretList[10]
secretList.insert(11, val)
print(secretList)
300x250
'개발일지 > Python' 카테고리의 다른 글
파이썬 index (내가 입력한 것이 몇번째 인덱스에 있는지 반환) (0) | 2022.05.10 |
---|---|
파이썬 리스트 슬라이싱 단계 설정 (0) | 2022.05.10 |
파이썬 리스트의 연결 및 중복 제거 수식 (0) | 2022.05.10 |
파이썬 remove 활용 (리스트에 내가 지우고자 한 아이템이 없을때까지) (0) | 2022.05.10 |
파이썬 enumerate 기초원리 (len과 같다고 보면 됨) (0) | 2022.05.09 |