python Interview Questions ๐ (1).pdf
734.5 KB
Don't forget to React โค๏ธ to this msg if you want more content Like this ๐
โค140๐43๐ฅ6๐6๐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 ๐
โค106๐19๐7
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 ๐
โค89๐14๐ฅ2๐ฑ2
python interview questions and answers.pdf
269.9 KB
React โฅ๏ธ for more content like this ๐
โค81๐13๐ฅ5๐คฉ5๐3๐3
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)
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 ๐
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>
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
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
๐ฅ 8 skills = 8 free certifications >>>
AI (Microsoft) -
https://learn.microsoft.com/en-us/training/paths/get-started-artificial-intelligence/
Deep learning (NVIDIA) -
https://learn.nvidia.com/en-us/training/self-paced-courses
Data science (IBM) -
https://skillsbuild.org/students/course-catalog/data-science
Data Analyst (Microsoft) -
https://learn.microsoft.com/en-us/training/paths/data-analytics-microsoft/
Python (Microsoft) -
https://learn.microsoft.com/en-us/shows/intro-to-python-development/
SQL (Infosys) -
https://www.coursejoiner.com/freeonlinecourses/infosys-free-certification-course-9/
Java (Infosys) -
https://www.coursejoiner.com/uncategorized/infosys-launched-free-java-certification-course/
Cloud computing (AWS) -
https://explore.skillbuilder.aws/learn/course/134/aws-cloud-practitioner-essentials
React - โค๏ธ for more posts like this ๐
AI (Microsoft) -
https://learn.microsoft.com/en-us/training/paths/get-started-artificial-intelligence/
Deep learning (NVIDIA) -
https://learn.nvidia.com/en-us/training/self-paced-courses
Data science (IBM) -
https://skillsbuild.org/students/course-catalog/data-science
Data Analyst (Microsoft) -
https://learn.microsoft.com/en-us/training/paths/data-analytics-microsoft/
Python (Microsoft) -
https://learn.microsoft.com/en-us/shows/intro-to-python-development/
SQL (Infosys) -
https://www.coursejoiner.com/freeonlinecourses/infosys-free-certification-course-9/
Java (Infosys) -
https://www.coursejoiner.com/uncategorized/infosys-launched-free-java-certification-course/
Cloud computing (AWS) -
https://explore.skillbuilder.aws/learn/course/134/aws-cloud-practitioner-essentials
React - โค๏ธ for more posts like this ๐
โค114๐6๐4๐ฅ2๐2
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