목록전체 글 (28)
sugenius
- 루프 #루프 #1 sum = 0 for i in range(1, 10+1) : sum += i #2 sum2 = sum (i for i in range(1,10+1)) #3 sum3 = sum (range(1,10+1)) - 제네릭 프로그래밍 제네릭이란 파라미터의 타입이 나중에 지정되게 하여 재활용성을 높이는 프로그래밍 스타일 #제네릭 프로그래밍 #1 def are_equal(a,b) : return a==b are_equal(10, 10.0) #2** :명시타입 from typing import TypeVar T = TypeVar('T') U = TypeVar('U') def are_equal(a:T, b:U) ->bool : return a == b are_equal(10, 10.0) - 배열반복..
👉 코딩테스트 - 프로그래머스 (국내) programmers.co.kr/ 프로그래머스 코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요. programmers.co.kr - 해커랭크 www.hackerrank.com/ HackerRank HackerRank is the market-leading technical assessment and remote interview solution for hiring developers. Learn how to hire technical talent from anywhere! www.hackerrank.com - 코딜리티 www.codility.com/ Codilit..

code.visualstudio.com/docs/python/python-tutorial Get Started Tutorial for Python in Visual Studio Code A Python hello world tutorial using the Python extension in Visual Studio Code (a great Python IDE like PyCharm, if not the best Python IDE) code.visualstudio.com 0. Vscode 설치 https://visual-studio-code.softonic.kr/ Visual Studio Code 비주얼 플랫폼에서의 코드 편집 visual-studio-code.softonic.kr 1. Python 확..
HTML Form www.w3schools.com/html/html_forms.asp HTML Forms HTML Forms An HTML form is used to collect user input. The user input is most often sent to a server for processing. The Element The HTML element is used to create an HTML form for user input: . form elements .The element is a container for www.w3schools.com W3schools.com 요악 및 정리 더보기 내용 HTML Forms HTML Forms HTML Form Attributes HTML For..

HTML Tutorial www.w3schools.com/html/default.asp HTML Tutorial HTML Tutorial HTML is the standard markup language for Web pages. With HTML you can create your own Website. HTML is easy to learn - You will enjoy it! Start learning HTML now » Easy Learning with HTML "Try it Yourself" With our "Try it Yourself" editor, www.w3schools.com W3schools.com 요악 및 정리 더보기 내용 HTML Tutorial HTML HOME HTML Intr..

_Layout Razor Syntax - 골뱅이 기호 @ 사용 - if, for, foreach 구문 - (string) > (int),Tosring(); -index.cshtml @{ var name = "홍길동 "; } @name 님 환영합니다. @{ var name = "홍길동 "; var age = 10; } @name 님 환영합니다. @if (age == 10) { @name 님은 @age 살 입니다. } else { @name 님은 나이를 알 수 없습니다. } @for (var index = 1; index < 10; index++) { @index 번째 입니다. } Controller에서 View로 데이터 전달 1. New fordels - (Models) 2. Models - new Cla..

builtwith 사용 기술 https://builtwith.com/ko/ BuiltWith Find out what websites are BuiltWith builtwith.com .net Framework , .net Core #Asp.net -Web Form winform 웹페이지 내에 소스 코드 존재할 수 있다. > 유지보수 어려움 -ASP.NET MVC View > HTML , CSS, JavaScript Controller > DB 통신, 기타 계산 .. Model > User -SignalR 실시간 채팅 서비스 -Web API 데이터베이스에서 나온 정보를 XML JSOM 형식 송출해주는 서비스 RESTful APT JSON Stateless 모튼 플랫폼 통신이 가능 ex) java spri..