
python
文章平均质量分 67
khazi
这个作者很懒,什么都没留下…
展开
-
python批量导入excel中的IP地址查询所在地及运营商
给有需要的朋友参考下,欢迎讨论。本程序调用淘宝ip地址库接口# !/usr/bin/env python# -*- coding:utf-8 -*-import pandas as pdimport urllib.requestimport jsonimport os# 设置工作目录os.chdir('/Users/xxxx/Desktop/')# 数据读取df = pd.read_excel('...原创 2018-06-09 00:14:13 · 3432 阅读 · 5 评论 -
leetcode 13.Roman to Integer Python解法
题目链接:https://leetcode-cn.com/problems/roman-to-integer/description/ 代码:class Solution: def romanToInt(self, s): """ :type s: str :rtype: int """ s=s....原创 2018-09-28 10:35:35 · 419 阅读 · 0 评论