목록Coding/pythonchallenge (4)
0w0
- 문제 사진을 클릭하면 파라미터의 변경을 지속 요구하는 것이 확인됨. - 코드 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 32 33 34 35 36 37 38 39 40 41 from urllib import request as req import re, time start_time=time.time() uri="http://www.pythonchallenge.com/pc/def/linkedlist.php?nothing=12345" while True: html = req.urlopen(uri).read() html=str(html) if "two" in html: p = int(p) / int(..
- 문제 One small letter, surrounded by EXACTLY three big bodyguards on each of its sides. 그 양쪽에 정확히 세 명의 큰 경호원들이 둘러쌓인 작은 편지 한 통. - 소스코드 내 주석 정보 확인 - 코드 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 import sys,io from urllib import request as req import re html=req.urlopen('http://www.pythonchallenge.com/pc/def/equality.html').read() html=str(html) #print(type(html)) # ori..
level2http://www.pythonchallenge.com/pc/def/ocr.html recognize the characters. maybe they are in the book, but MAYBE they are in the page source. 구글 번역기 문자를 인식하고 있습니다. 아마 그들은 책에,하지만 어쩌면 그들은 페이지 소스에 있습니다. 페이지 소스를 보도록 하겠습니다.주석으로 처리되어있는 이해하기 힘든 문자들 사이에 희귀하게 있는 문자를 찾으라고합니다.알파벳이 이해불가 문자들 사이에 숨어있을 것으로 보입니다. 문자를 찾아보도록 하겠습니다. 소스 !!!odi="""생략""" #주석으로 되어있는 문자들의 부분을 넣어줍니다.modi="" for i in range(len(ori)):..
시작 페이지http://www.pythonchallenge.com/about.php level0http://www.pythonchallenge.com/pc/def/0.html 2의 38 제곱을 구하라고합니다. >>>>>> 2**38274877906944L>>> http://www.pythonchallenge.com/pc/def/274877906944.html level1http://www.pythonchallenge.com/pc/def/274877906944.html 알파벳을 오른쪽으로 두개씩 밀어주라는 의미로 보이십니까?그렇게 안보이면 안되는데... a~z까지 천천히 써보시면서 이해하시는 것도 좋은 방법입니다. g로 시작해서 spj.로 끝나는 저 보라색 문자열을 2칸씩 옆으로 이동시켜서 문자열을 얻으라..