import requests def get_ip_city(ip = '1.1.1.1'): return requests.get(f'https://www.gamefunc.top/get_ip_city/{ip}').text city = get_ip_city('113.113.113.113') # '广东省佛山市 电信' print(city) # print(type(city))