목록2024/01/05 (5)
JiSoo's Devlog
React JS는 UI를 interactive하게 만들어 준다 React JS를 설치하기 위해서는 두 개의 JavaScript 코드를 import 해야 한다 -> react, react-dom ReactJS의 규칙 중 하나는 HTML을 페이지에 직접 작성하지 않고 JavaScript와 ReactJS를 이용해 element 생성 react-dom은 모든 React element들을 HTML body에 들 수 있게 해 준다 ReactDOM.render()은 react element를 HTML로 만들어 배치 React.createElement("span", {span의 property}, “span 내용”) property는 classname, id 가능, style도 가능 바닐라 JS에서는 HTML -> J..
a = int(input()) for i in range(a): b, c = map(int, input().split()) print(b+c) range함수의 기본은 range(a, b)와 같은 형태로 a 이상 b 미만을 의미, 앞의 0 생략 가능
a,b,c,d,e = map(int,input().split()) k = (a*a+b*b+c*c+d*d+e*e)%10 print(k) n = list(map(int, input().split())) t = 0 for i in n: t +=i*i print(t%10) 입력값을 리스트로 받고 변수 t를 0으로 초기화한 후 전체 합산 값 받기
w = input().upper() nw = list(set(w)) wl = [] for i in nw: wl.append(w.count(i)) if wl.count(max(wl)) > 1: print("?") else: print(nw[(wl.index(max(wl)))]) 처음에 입력받는 문자의 대소문자 구별을 위해 upper 함수 사용 비교를 위해 set 함수 사용해 중복된 문자값 제거 후 변수에 저장 for문으로 알파벳이 사용된 횟수 리스트에 저장 if문으로 출력문 작성, 알파벳이 사용된 개수 중 1보다 크면 물음표 출력 최댓값이 하나라면 리스트 중 가장 큰 수의 위치를 index로 찾아 문자열 출력 list 혹은 문자열에서 특정 element가 몇 개인지 알고 싶을 때 list.count() 함..