PythonCoder Official
78.6K subscribers
226 photos
9 videos
101 files
104 links
โ€ข ๐—•๐—ฒ๐˜€๐˜ ๐—ฝ๐—น๐—ฎ๐—ฐ๐—ฒ ๐—ณ๐—ผ๐—ฟ ๐—ฃ๐˜†๐˜๐—ต๐—ผ๐—ป ๐—–๐—ผ๐—ฑ๐—ฒ๐—ฟ๐˜€ ๐Ÿ˜€
โ€ข ๐—™๐—ฟ๐—ฒ๐—ฒ ๐—ฃ๐—ฟ๐—ผ๐—ด๐—ฟ๐—ฎ๐—บ๐—บ๐—ถ๐—ป๐—ด ๐—–๐—ผ๐˜‚๐—ฟ๐˜€๐—ฒ๐˜€ & ๐—ง๐˜‚๐˜๐—ผ๐—ฟ๐—ถ๐—ฎ๐—น๐˜€๐Ÿ“’
โ€ข ๐——๐—ฎ๐˜๐—ฎ ๐—ฆ๐—ฐ๐—ถ๐—ฒ๐—ป๐—ฐ๐—ฒ๐Ÿ“Š | ๐— ๐—ฎ๐—ฐ๐—ต๐—ถ๐—ป๐—ฒ ๐—Ÿ๐—ฒ๐—ฎ๐—ฟ๐—ป๐—ถ๐—ป๐—ด | ๐—”๐—œ ๐Ÿค–
โ€ข ๐——๐—ฎ๐—ถ๐—น๐˜† ๐——๐—ผ๐˜‡๐—ฒ ๐—ผ๐—ณ ๐—ฃ๐—ฟ๐—ผ๐—ท๐—ฒ๐—ฐ๐˜๐˜€ ๐Ÿง 
Download Telegram
Python Handwritten Notes PDF Guide.pdf
32.3 MB
Don't forget to React โค๏ธ to this msg if you want more content Like this ๐Ÿ‘
โค228๐Ÿ‘33๐Ÿฅฐ8๐Ÿ”ฅ4
50 JavaScript Interview Questions (1).pdf
84.4 KB
Don't forget to React โค๏ธ to this msg if you want more content Like this ๐Ÿ‘
โค102๐Ÿ‘13๐Ÿ™6
- Location of Mobile Number Code -

import phonenumbers
from phonenumbers import timezone
from phonenumbers import geocoder
from phonenumbers import 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("timezone : "+str(timeZone))

# printing the geolocation of the given number using the geocoder module
geolocation = geocoder.description_for_number(phoneNumber,"en")
print("location : "+geolocation)

# printing the service provider name using the carrier module
service = carrier.name_for_number(phoneNumber,"en")
print("service provider : "+service)
โค145๐Ÿ‘25๐Ÿ”ฅ6๐Ÿค”6๐Ÿ˜2
๐Ÿ”‘ Placement drive PDF โœ”๏ธ

https://drive.google.com/drive/folders/1Fqr4QWLOkQm_XXRIXnmCfudfg5R5Q3uU

Comment - โ™ฅ๏ธ for more content like this ๐Ÿš€
โค49๐Ÿ‘5๐Ÿ”ฅ2
Python Handwritten Notes PDF Guide (1).pdf
32.3 MB
Comment - โ™ฅ๏ธ for more content like this ๐Ÿš€
โค124๐Ÿ‘24๐Ÿฅฐ7
LEGEND FORM SOURCE CODE
Complete Source Code ๐Ÿ‘‡
-----------------------------------------------------

<html>
<head>
<style>

.outer{ 
margin:auto;
height:300px;
width:400px;
border:2px solid black;
position:relative
}
p{
margin-left:80px;
}
.in{
margin-left:80px;
padding:10px
}
#bt{
margin-top:20px;
position:absolute;
left:150px;
}
#bt:hover{
background:green;
font-size:13px;
cursor:pointer;
color:white;
}
</style>
<script>
function fa(){
if(a.value=="" || b.value==""){
f()
document.getElementById("a").style.border="3px solid red"
document.getElementById("b").style.border="3px solid red"
bt.value="Pahila data tak"
}
else{
document.getElementById("a").style.border="3px solid green"
document.getElementById("b").style.border="3px solid green"
bt.value="Ha thik ahe ata"
bt.style.left="120px";
}
}
flag=1
function f(){
if(flag==1){
bt.style.left="210px"
flag=2
}
else if(flag==2){
bt.style.left="80px"
flag=1
}
}
</script>
</head>
<body>
<div class="outer">
<h1 style="text-align:center">Legend form</h1>
<p>Enter Id</p>
<input class="in" type="text" placeholder="Enter id" id="a"/>
<p>Enter Confirm Pass</p>
<input class="in" type="password" placeholder="Enter password" id="b"/>
<br>
<input type="submit" onmouseenter="fa()" onclick="alert('waaaa')" id="bt" />

</div>

</body>


</html>
โค117๐Ÿ”ฅ13๐Ÿ‘3๐Ÿฅฐ1
Give Right Answer ๐Ÿ‘‡
โค55๐Ÿค”7
โค66๐Ÿ”ฅ11๐Ÿ‘9๐Ÿ‘5๐Ÿ˜ฑ3๐Ÿฅฐ1
Python Basics to Advanced Notes๐Ÿ“š (1) (1).pdf
8.7 MB
Comment - โ™ฅ๏ธ for more content like this ๐Ÿš€
โค107๐Ÿ‘17๐Ÿ”ฅ1๐Ÿฅฐ1
DataStructure Notes.pdf
16.9 MB
Complete 100 ๐Ÿ‘ Reaction & We'll share Python DS Handwritten Notes ๐Ÿ“Œ
๐Ÿ‘161โค21๐Ÿ”ฅ5
PythonCoder Official pinned ยซ- Location of Mobile Number Code - import phonenumbers from phonenumbers import timezone from phonenumbers import geocoder from phonenumbers import carrier number = input("Enter the phone number with country code : ") # Parsing String to the Phone numberโ€ฆยป
Python Handwritten Notes PDF Guide (1).pdf
32.3 MB
React โ™ฅ๏ธ for more notes like this ๐Ÿš€
โค116๐Ÿ”ฅ12๐Ÿ‘5๐Ÿ‘4
50-useful-python-scripts-free-pdf (5).pdf
426.5 KB
React โ™ฅ๏ธ for more notes like this ๐Ÿš€
โค60๐Ÿ”ฅ4๐Ÿค”2
Certifications โœ”๏ธ ๐ŸŽฏ

1/ Google Certifications: https://developers.google.com/certification

2/ PayPal (Technical Compliance / PCI): https://www.paypal.com/in/webapps/mpp/pci-compliance

3/ Deloitte Academy (Learning & Certifications): https://www.deloitte.com/cy/en/services/deloitte-academy.html

4/ Oracle Certifications: https://academy.oracle.com/en/resources-oracle-certifications.html

5/ IBM Certifications: https://www.pearsonvue.com/us/en/ibm.html

6/ Meta Certifications: https://www.facebook.com/business/learn/certification

7/ Microsoft: https://learn.microsoft.com/en-us/shows/intro-to-python-development/


React โ™ฅ๏ธ to get more posts like this ๐Ÿš€
โค110๐Ÿฅฐ6๐Ÿ”ฅ5๐Ÿ‘4
๐Ÿ”‘ Placement drive PDF โœ”๏ธ

https://drive.google.com/drive/folders/1Fqr4QWLOkQm_XXRIXnmCfudfg5R5Q3uU

Comment - โ™ฅ๏ธ for more content like this ๐Ÿš€
โค40๐Ÿ‘1
TCS NQT Previous Years Question & Answers (1).pdf
312.6 KB
๐Ÿ‘5โค3โคโ€๐Ÿ”ฅ2๐Ÿ”ฅ2