File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11# pythonchallenge
2- Solve Problems in http://www.pythonchallenge.com/
2+ Solve Problems in http://www.pythonchallenge.com
3+
4+ #### 5
5+ http://www.pythonchallenge.com/pc/def/channel.html
6+ ```
7+ import pickle
8+ ```
9+ every line elements add up to 96
10+
11+ #### 4
12+ http://www.pythonchallenge.com/pc/def/peak.html
13+
14+ ```
15+ import requests
16+ ```
17+ this is a http client lib with to do http request.
18+
19+
20+ #### 3
21+ result: http://www.pythonchallenge.com/pc/def/linkedlist.html
22+
23+ transfer to: http://www.pythonchallenge.com/pc/def/linkedlist.php
24+
25+ #### 2
26+ result: http://www.pythonchallenge.com/pc/def/equality.html
27+
28+ #### 1
29+ result: http://www.pythonchallenge.com/pc/def/ocr.html
30+
31+ - ord()
32+ - chr()
33+ - isalpha()
34+ - isalnum()
35+
36+ True: 'a'.isalpha()
37+ True: 'a'.isalnum()
38+
39+ False: '.'.isalpha()
40+ False: '.'.isalnum()
41+
42+ True: '1'.isalnum()
43+ False: '1'.isalpha()
44+
45+ #### 0
46+
47+ pow(2,3)
48+
49+ start: http://www.pythonchallenge.com/pc/def/0.html
50+
51+ result: http://www.pythonchallenge.com/pc/def/map.html
You can’t perform that action at this time.
0 commit comments