123456789101112131415161718192021>>> data = {"a": 10,"b": 5,"c": 7,"d": 2,"e": 9,"f": 1}>>> zip(data.values(), data.keys())[(10, 'a'), (7, 'c'), (5, 'b'), (9, 'e'), (2, 'd'), (1, 'f')]>>> min(zip(data.values(), data.keys()))(1, 'f')>>> max(zip(data.values(), data.keys())) (10, 'a')>>> sorted(zip(data.values(), data.keys()), reverse=True)[(10, 'a'), (9, 'e'), (7, 'c'), (5, 'b'), (2, 'd'), (1, 'f'..
1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374Function RegExpTest(Pattern, Str) Dim RegExp SET RegExp = New RegExp RegExp.Pattern = Pattern RegExp.IgnoreCase = True RegExpTest = RegExp.Test(Str) SET RegExp = NothingEnd Function Function in_array(element, arr) in_array = False For i=0 To Ubound(arr) If Tr..
- Total
- Today
- Yesterday
- 번역
- Linux
- deview
- Module
- error
- mysql
- apache
- client
- 외부링크
- engineering
- httpd
- 명령어
- RESTful
- 코드
- check
- limits
- command
- File
- PowerShell
- MariaDB
- example
- monitoring
- Python
- Web
- Ansible
- 이슈처리
- 예제
- code
- configuration
- Windows
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |