| 일 | 월 | 화 | 수 | 목 | 금 | 토 |
|---|---|---|---|---|---|---|
| 1 | 2 | |||||
| 3 | 4 | 5 | 6 | 7 | 8 | 9 |
| 10 | 11 | 12 | 13 | 14 | 15 | 16 |
| 17 | 18 | 19 | 20 | 21 | 22 | 23 |
| 24 | 25 | 26 | 27 | 28 | 29 | 30 |
| 31 |
- 컴퓨터과학
- 데이터과학
- 소프트웨어공학
- 프로그래밍
- 자바스크립트
- 데이터분석
- 디자인패턴
- 웹개발
- 보안
- I'm Sorry
- 딥러닝
- 데이터베이스
- 인공지능
- 네트워크보안
- Yes
- 네트워크
- 컴퓨터공학
- 머신러닝
- 프로그래밍언어
- 사이버보안
- 자료구조
- 알고리즘
- 데이터구조
- 소프트웨어
- 클라우드컴퓨팅
- 빅데이터
- 파이썬
- springboot
- 버전관리
- 컴퓨터비전
- Today
- Total
목록전체 글 (1964)
스택큐힙리스트
튜토리얼을 따라하고 있고, 왜 이 오류가 발생했는지 모르겠습니다: in extract_featuresets(ticker) 2 tickers, df = process_data_for_labels(ticker) 3 df['{}_target'.format(ticker)] = list(map(buy_sell_hold, ----> 4 df['{}_{}1d'.format(ticker)], 5 df['{}_{}2d'.format(ticker)], 6 df['{}_{}3d'.format(ticker)], IndexError: Replacement index 1 out of range for positional args tuple 여기가 제 코드입니다:tickers, df = process_data_for_labels(..
BeautifulSoup을 사용하여 데이터를 가져올 때 인덱스 오류가 발생하는 곳이 있습니다. 많은 데이터를 가져올 수 있지만 어딘가에서 잘못되었습니다. 이를 어떻게 해결할 수 있을까요?import requests from bs4 import BeautifulSoup totalCar = 0 for pageNumber in range(3, 7): r = requests.get(https://www.autoscout24.com/lst/bmw?sort=standard&desc=0&offer=U&ustate=N%2CU&size=20&page=+ str(pageNumber)+&cy=D&mmm=47%7C%7C&mmm=9%7C%7C&atype=C&) r.status_code r.content soup = Beauti..
제가 이 코드를 실행할 때 이 오류를 왜 받고 있나요? Traceback (most recent call last): File main.py, line 13, in def twoSum(self, nums: list[int], target: int) -> list[int]: TypeError: 'type' object is not subscriptable nums = [4,5,6,7,8,9] target = 13 def twoSum(self, nums: list[int], target: int) -> list[int]: dictionary = {} answer = [] for i in range(len(nums)): secondNumber = target-nums[i] if(secondNumber in d..
이 오류가 발생하는 이유를 모르겠고 어떤 답을 찾을 수도 없습니다. react-router-dom 패키지를 제거하고 다시 설치했지만 여전히 'Switch' 모듈이 'react-router-dom'에서 내보내지지 않았다는 오류가 나타납니다. 이것이 제 코드입니다. 발생한 오류: 임포트 오류: 'Switch'가 'react-router-dom'에서 내보내지지 않았습니다. 코드import React from 'react'; import './App.css'; import NavBar from './components/navbar.js'; import Footer from './components/footer.js'; import Home from './components/pages/homepage/home.j..