ru
Feedback
Python Codes Basic to Advance

Python Codes Basic to Advance

Открыть в Telegram
2 813
Подписчики
Нет данных24 часа
-47 дней
-2430 день
Архив постов
Gues the correct answer
Anonymous voting

photo content

-Location of Mobile Number Code -
import phonenumbers
from phonenumbers import (timezone,geocoder,carrier)
 
number = input("Enter the phone number with country code : ")
 
# Parsing String to the Phone number
phoneNumber = phonenumbers.parse(number)
 
# printing the timezone using the timezone module
timeZone = timezone.time_zones_for_number(phoneNumber)
print(f"timezone : {timeZone}")
 
# printing the geolocation of the given number using the geocoder module
geolocation = geocoder.description_for_number(phoneNumber,"en")
print(f"location : {geolocation}")
 
# printing the service provider name using the carrier module
service = carrier.name_for_number(phoneNumber,"en")
print(f"service provider : {service}")
Jᴏɪɴ ᴜs :- @Python_Codes_Pro Support group :- @python_group_pro

Jᴏɪɴ ᴜs :- @Python_Codes_Pro Support group :- @python_group_pro
Jᴏɪɴ ᴜs :- @Python_Codes_Pro Support group :- @python_group_pro

For websites developers help Channel @react_next_js Group @reactjs_nextjs_group

x=[1,2,3];y=[1,2,3];print(x is y)
Anonymous voting

# Generate AI image with the input text
pip install --upgrade MukeshAPI
from MukeshAPI import api
response = api.ai_image("cute boy pic")
#print(response)
with open("mukesh.jpg", 'wb') as f:
    f.write(response)
print("image generated successfully")
By : @mr_sukkun for more visit : https://pypi.org/project/MukeshAPI/

📽 Web Automation and Scraping using Python - Udemy ✅ By: @Python_Codes_Pro More likes => more courses 🫶

📽 Web Automation and Scraping using Python - Udemy ✅ By: @Python_Codes_Pro More likes => more courses 🫶 Courses link :- htt
📽 Web Automation and Scraping using Python - Udemy ✅ By: @Python_Codes_Pro More likes => more courses 🫶 Courses link :- https://t.me/Python_Codes_Pro/434

print(not print())
Anonymous voting

Jᴏɪɴ ᴜs :- @Python_Codes_Pro Support group :- @python_group_pro
Jᴏɪɴ ᴜs :- @Python_Codes_Pro Support group :- @python_group_pro

Tip : Use the zip() function to iterate over multiple iterables simultaneously Example:
# Create two lists
names = ["John", "Mary", "Bob"]
ages = [30, 25, 40]

# Iterate over both lists using zip()
for name, age in zip(names, ages):
    print(f"{name} is {age} years old.")
Benefits: * Simplifies the process of iterating over multiple lists or tuples * Ensures that the elements from corresponding lists are aligned Language: Python Jᴏɪɴ ᴜs :- @CodesSnippet

Guess The Output? my_list = [True, False, True, None, True]; print(any(my_list)); print(all(my_list))
Anonymous voting

a = ([]) b = [] print(type(b.append(a)))
Anonymous voting

a = ([]) print(type(a))
Anonymous voting

Node js full video watch now live https://youtu.be/WW4NZySuL5Y?si=dDLJBTnufUn7Ub1m After watching it next: Create telegram bot Create websites Create apis Create apps And so on...

Node js full video https://youtu.be/WW4NZySuL5Y?si=dDLJBTnufUn7Ub1m After watching it next: Create telegram bot Create websites Create apis Create apps And so on... Topics Covered:
00:00:00 - Intro of video
00:02:26 - Introduction to node js
00:05:59 - Setup node js environment 
00:07:33 - Installing Visual studio Code IDE
00:08:39 - Installing Node js
00:12:58 - Understand about node folder setup
00:15:18 - Basic function of js console.log
00:19:25 - Basic Datatypes of js (Start of basic javascript)
00:25:15 - Variables and Constant in js
00:33:45 - Js Object and List (Array)
00:53:08 - Javascript Operators
01:02:24 - if else Control statement in js
01:08:00 - while and for loops in js
01:17:01 - functions in javascript
01:21:23 - Understand asynchronous javascript
01:26:52 - Understand why async/await in js
01:31:01 - Understand js callback functions
01:36:38 - Use of built in modules in js (example: fs module)
01:40:32 - installing external libraries and fetching data (example axios)
01:48:14 - Anonymous functions in js
01:51:38 - Some of my words for why you learnt this js
Watch it first at morning 8:30 (Live) Node js full video https://youtu.be/WW4NZySuL5Y?si=dDLJBTnufUn7Ub1m

print(0xA + 0xB + 0xC)
Anonymous voting

9 Python For Generative AI Language: Python Jᴏɪɴ ᴜs :- @Python_Codes_Pro Support group :- @python_group_pro
9 Python For Generative AI Language: Python Jᴏɪɴ ᴜs :- @Python_Codes_Pro Support group :- @python_group_pro

Guess the Output?Give reason in comment print(0.1+0.2==0.3); print(0.1+0.3==0.4)
Anonymous voting