IT관련(197)
-
파이썬 첼린지(Python Challenge) - follow the chain - 4
출처: http://www.pythonchallenge.com/pc/def/linkedlist.php 가보니 이번에는 내용도 없이 이미지만 덜렁.마찬가지로 html 소스를 열어보니 이 이미지에는 link가 걸려 있다. 그리고 도움이 되는 문구가 주석으로 달려 있다. 이미지의 걸려 있는 link는 http://www.pythonchallenge.com/pc/def/linkedlist.php?nothing=12345 이다. 가보면 and the next nothing is 44827 라는 문구가...결국 http://www.pythonchallenge.com/pc/def/linkedlist.php?nothing= 에 나오는 숫자를 조합하여 URL을 만들고 그걸 계속 따라들어가다 보면 정답이 나오는 건가 보다..
2015.07.09 -
파이썬 첼린지(Python Challenge) - re - 3
출처: http://www.pythonchallenge.com/pc/def/equality.html One small letter, surrounded by EXACTLY three big bodyguards on each of its sides. --> 하나의 소문자의 앞뒤로 3개의 대문자가 반드시 있다. 마찬가지로 출처 URL의 html 소스를 보면 이상한 문자열들이 있다.그 문자열에서 소문자를 찾는데 앞뒤로 3개의 대문자가 있어야만 한다. 4개의 대문자면 안됨. 반드시 꼭 3개의 대문자여야만 함.이전 문제 부터 그러는데... 이거 파이썬 문제라기 보다 정규식 문제인듯...파이썬용 정규식 라이브러리는 써본적이 없음. """http://www.pythonchallenge.com/ """text_file..
2015.07.09 -
파이썬 첼린지(Python Challenge) - ocr - 2
출처: http://www.pythonchallenge.com/pc/def/ocr.html recognize the characters. maybe they are in the book, but MAYBE they are in the page source. 출처의 URL에 가서 html 코드를 보면 주석으로 이 페이지의 문자열이 변형되어 기록되어 있다.그걸 긁어서 text.txt로 저장을 해 두고 그 파일에서 알파벳만 찾았다. """http://www.pythonchallenge.com/ """text_file = open("test.txt", "rw+")text = text_file.readline()result = "" while text != "":for x in text:if x.isalpha()..
2015.07.09 -
파이썬 첼린지(Python Challenge) - What about making trans? - 1
출처: http://www.pythonchallenge.com/pc/def/map.html everybody thinks twice before solving this. g fmnc wms bgblr rpylqjyrc gr zw fylb. rfyrq ufyr amknsrcpq ypc dmp. bmgle gr gl zw fylb gq glcddgagclr ylb rfyr'q ufw rfgq rcvr gq qm jmle. sqgle qrpgle.kyicrpylq() gq pcamkkclbcb. lmu ynnjw ml rfc spj. General tips: Use the hints. They are helpful, most of the times. Investigate the data given to you..
2015.07.09 -
파이썬 첼린지(Python Challenge) - warming up - 0
출처: http://www.pythonchallenge.com/pc/def/0.html """Python Challenge - warming up - 0"""print 2**38 http://www.pythonchallenge.com/pc/def/274877906944.html
2015.07.09 -
파이선(Python) 셀프 스터디
파이선 공부를 하고자 하시는 분은 코드아카데미에서 독학을 할 수 있습니다. http://www.codecademy.com/en/tracks/python 이제 절반 정도 했는데 재미있네요.
2015.07.06