PythonCoder Official
79.7K subscribers
224 photos
8 videos
92 files
98 links
• 𝗕𝗲𝘀𝘁 𝗽𝗹𝗮𝗰𝗲 𝗳𝗼𝗿 𝗣𝘆𝘁𝗵𝗼𝗻 𝗖𝗼𝗱𝗲𝗿𝘀 😀
• 𝗙𝗿𝗲𝗲 𝗣𝗿𝗼𝗴𝗿𝗮𝗺𝗺𝗶𝗻𝗴 𝗖𝗼𝘂𝗿𝘀𝗲𝘀 & 𝗧𝘂𝘁𝗼𝗿𝗶𝗮𝗹𝘀📒
• 𝗗𝗮𝘁𝗮 𝗦𝗰𝗶𝗲𝗻𝗰𝗲📊 | 𝗠𝗮𝗰𝗵𝗶𝗻𝗲 𝗟𝗲𝗮𝗿𝗻𝗶𝗻𝗴 | 𝗔𝗜 🤖
• 𝗗𝗮𝗶𝗹𝘆 𝗗𝗼𝘇𝗲 𝗼𝗳 𝗣𝗿𝗼𝗷𝗲𝗰𝘁𝘀 🧠
Download Telegram
python Interview Questions 🐍 (1).pdf
734.5 KB
Don't forget to React ❤️ to this msg if you want more content Like this 👍
129👍42🔥6👏5🙏5
Important [ Python Built-in Methods ] {CheatSheet}.pdf
304.4 KB
Don't forget to React ❤️ to this msg if you want more content Like this 👍
94👍15👌5
TCS-Coding-Programming-Questions (1) (1).pdf
416.5 KB
Don't forget to React ❤️ to this msg if you want more content Like this 👍
75👍12🔥2😱2
Reply Correct Answer 👇
43👍20🔥6👏5
python interview questions and answers.pdf
269.9 KB
React ♥️ for more content like this 👍
65👍12🤩5🔥4😁2👏1
Python Handwritten Notes PDF Guide.pdf
32.3 MB
Don't forget to React ❤️ to this msg if you want more content Like this 👍
191👍27🥰6🔥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 👍
79👍10🙏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)
94👍16🔥4🤔3😁1
🔑 Placement drive PDF ✔️

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

Comment - ♥️ for more content like this 🚀
32👏3🔥1
Python Handwritten Notes PDF Guide (1).pdf
32.3 MB
Comment - ♥️ for more content like this 🚀
80👍14🥰2
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>
52🔥8🥰1