🔴شروع دوره مقدماتی پایتون
این دوره نیاز به پیش زمینه ای ندارد و از پایه آموزش میدهد
✅فصل اول :
1 2 3 4 5 6 7 8 9
✅ فصل دوم:
دانلود کل فصل دوم
فصل سوم:
دانلود کل فصل سوم
فصل چهارم (آخر):
دانلود کل فصل چهارم آخر
@Makransourcey · 5.3K subscribers
🟢 مکران سورس | دریایی از دانش کدنویسی ⚡ آموزشهای تخصصی برنامه نویسی 💻 سورسکدهای آماده 🎯 دورههای پروژهمحور 🔧 ترفندهای کاربردی 💎 سفارش طراحی ربات و سایت 🆔 @Ai_Dani
The short link opens the channel straight in the Telegram app — not in a browser tab.
tg.me/go/MakransourceyIs this your channel? Add @tgme as admin — and see how many people click your links. Get the stats →
Channel created April 25, 2021per Telegram
We have been tracking it since July 17, 2026
In all that time the channel has changed neither its name, nor its @username, nor its avatar.
We show only what we have seen ourselves.
Python
import requests
def get_location(ip_address):
url = 'http://ip-api.com/json/' + ip_address
response = requests.get(url)
data = response.json()
if data['status'] == 'success':
location = f"IP: {ip_address}\nCountry: {data['country']}\nCity: {data['city']}\nLatitude: {data['lat']}\nLongitude: {data['lon']}"
return location
else:
return 'Unable to retrieve location information.'
ip_address = input('Enter IP address: ')
location = get_location(ip_address)
print(location)