목록분류 전체보기 (231)
Knowledge Map
1234567891011121314151617181920212223242526272829303132# 파일을 읽어와서 4가지 자료형으로 저장하기. # 1. 읽어오기file = open('testtest','r',encoding='utf-8')str = file.read()listkey = str.split('\n')setkey = set(str.split('\n'))tuplekey = tuple(str.split('\n'))print(listkey)listkeyTest = [] for i in listkey: listkeyTest.append(i.split(':')) print(listkeyTest) print()print(listkeyTest)dictkey = dict(listkeyTest)print(..
function1.py 12345678910111213141516171819202122"""1. 내장함수 -> 파이썬이 자체 내장 된 함수"""# sum은 어떤 자료형이라도 계산이 가능하다.print(sum([3,4,5])) #iterator -> (출력 대상자)print(sum((3,4,5)))print(sum({3,4,5}))print(bin(8), int(1.7), float(2), str(5)+'오') # 외부에서 불어와서 사용한다.import math #간단한 계산 --> 모듈명.함수 로 호출한다.# ceil은 무조건 올림, floor은 내림 함수이다. print(math.ceil(1.2), math.floor(1.5))print()b_list = [1,2,5,3,42,33]# all() -> ..
참고한 사이트http://stackoverflow.com/questions/18733680/unknown-provider-modalprovider-modal-error-with-angularjs AngularJS 버전 : 1.4.2 [ERROR : angular.js:12332 Error: [$injector:unpr] Unknown provider: TypeProvider
출처 http://pwnbit.kr/48 123456789101112131415161718192021222324# -*- coding: utf-8 -*-import re def test(): s='韓子는 싫고, 한글은 nice하다. English 쵝오 -_-ㅋㅑㅋㅑ ./?!' hangul = re.compile('[^ ㄱ-ㅣ가-힣]+') # 한글과 띄어쓰기를 제외한 모든 글자 # hangul = re.compile('[^ \u3131-\u3163\uac00-\ud7a3]+') # 위와 동일 # hangul = re.compile('[^ \.\,\?\!a-zA-Z0-9\u3131-\u3163\uac00-\ud7a3]+') # 한글과 영어 숫자 몇몇 부호, 띄어쓰기 제외(2) result = hangul.s..
매주 토요일마다 하는 파이썬 입문 강좌를 듣게 되었다. 매번 들은 것들에 대해서 간단히 필기한 것을 올려본다.파이썬 버전은 3.4.4이며 이것은 파이썬의 wxPython이 돌아가는 가장 최신 버전이 3.4.4라서 이걸로 진행한다고 한다. example1.py1234567891011121314151617181920212223242526272829303132333435363738394041print("=================================")print("테스트 입니다.")print("=================================")# 한줄 주석입니다.''' 여러줄 주석 문자열은 '문자열' 또는 "문자열" 파이썬은 모든 데이터를 객체로 표현한다. 다른 언어와는 다르게 또 다..
angularjs에서 윤년 처리할수 있는 콤보 박스를 만들어 보았다.사실.. 그냥 datepicker을 하고 싶었으나 콤보 박스 하라고 하니 어쩌겠나. 해야지.. 일단 더럽게 못짠 코드라서 그냥 정말 헤매는 사람만 참고삼아 보길 바란다.angularJS버전은 1.4.2이다. 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364//변수 선언을 해준다. //monthData를 통해서 html화면에 ng-repeat로 뿌려주려고 한다.//dayData를 통해서 각 월별로 날수들을 읽어들일수 있게 한다.//dayMonthData는 dayData에서 해당..
http://plnkr.co/edit/0Jf4qrpHAXY8MeeVA3kl?p=preview 참조 123456789101112131415161718192021222324angular.module('plunker', ['ui.bootstrap']);var ButtonsCtrl = function ($scope) { $scope.singleModel = 1; $scope.radioModel = 'Left'; $scope.checkModel = { left: false, middle: true, right: false }; $scope.toggleMode = function() { if ($scope.radioModel == 'Left') { console.log('Left clicked') alert($sc..
플라스크.. 문서봐도 솔직히 잘 알수가 없어서 그냥 맨땅에 헤딩한다는 느낌으로 그냥 API손대기 시작했는데 진자 헷갈렸다.다행히 성공을 하게 되어서 그 흐름을 기록한다. (angularjs + flask 조합이다.) 회원가입 회원가입.html 파일에서 이름, 이메일 등을 입력한다. ng-model로 지정된 값으로 해당 값이 value로 받게 된다. 이때의 sign.name은 angular에서의 $scope값이다.따라서 해당 페이지에서 받는 컨트롤러인 signCtrl에서 처리된다. signCtrl에서 $scope.sign = {name:{field:name, value:null},pw:{field:pw, value:null}}; 이렇게 $scope.sign.name을 설정 및 초기화를 시켜준다. 입력하자마..
출처: http://slayer95.tistory.com/entry/Tip%EB%A6%AC%EB%88%85%EC%8A%A4-%ED%84%B0%EB%AF%B8%EB%84%90-%EB%AA%85%EB%A0%B9%EC%96%B4-%EB%AA%A8%EC%9D%8Chttp://www.mireene.com/webimg/linux_tip1.htm Permission OwnerGroupOtherOwner와 Group은 파일소유자자신과 자신이 속한그룹. Other은 제3자, 웹사이트 방문객은 제3자로 nobody로 취급.rwxrwxrwxr은 파일 읽기(4), w는 파일 쓰기(2), x는 파일 실행(1)755파일소유자는 그것을 읽고 쓰고 실행시킬 수 있지만, 제3자는 읽고 실행만 시킬 수 있다.777제3자도 쓰기 권한이 ..
알다 시피 angularJS는 translate를 적용가능해서 해당 기능만 만들면 쉽게 다국어 변형이 가능하다.보통 l10n에서 많이 처리한다. 보통은 태그 안에 translate="경로 이름" 을 적는 방식으로 많이 하는데 placeholder에는 어떻게 적용을 할까? 1cs 이런식으로 한다. 예를 들어 content.example.test 이런식이면 1cs 이렇게 해주면 된다. ========================================================== angularJS내의 컨트롤로에서 $translate.instance('cotent.signup.text) 이런식으로 사용하게 되면 컨트롤러 내에서 translate를 통한 번역 처리가 가능하다.