Indira Nagar, Lucknow, India - 226016.
Details verified of Sanjay Singh✕
Identity
Education
Know how UrbanPro verifies Tutor details
Identity is verified based on matching the details uploaded by the Tutor with government databases.
Hindi Mother Tongue (Native)
English Basic
Dr Ram Manohar Lohiya Awadh University Faizabad 2000
Bachelor of Arts (B.A.)
Utter Pradeseh Technical University 2008
Master of Computer Applications (M.C.A.)
Indira Nagar, Lucknow, India - 226016
ID Verified
Phone Verified
Email Verified
Report this Profile
Is this listing inaccurate or duplicate? Any other problem?
Please tell us about the problem and we will fix it.
Class Location
Online Classes (Video Call via UrbanPro LIVE)
Student's Home
Tutor's Home
Years of Experience in Python Training classes
12
Course Duration provided
1-3 months
Seeker background catered to
Corporate company, Educational Institution, Individual
Certification provided
Yes
Python applications taught
Web Development with Python , Data Analysis with Python , Regular Expressions with Python , Help in assignment, Data Science with Python, Web Scraping with Python , Data Extraction with Python , Automation with Python , Testing with Python
1. Which classes do you teach?
I teach Python Training Class.
2. Do you provide a demo class?
Yes, I provide a free demo class.
3. How many years of experience do you have?
I have been teaching for 12 years.
Answered on 27/10/2023 Learn IT Courses/Programming Languages/Python
Working with sockets and network programming in Python involves using the socket module, which provides low-level network communication capabilities. You can create client and server applications, exchange data over various network protocols (like TCP and UDP), and perform tasks like sending and receiving data over a network connection.
Here's a basic overview of working with sockets in Python:
import socket
#Create a socket object:
server_socket = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
#Bind the socket to an IP address and port:
server_address = ('127.0.0.1', 12345) # Example IP and port
server_socket.bind(server_address)
#Listen for incoming connections:
server_socket.listen(5)
# Accept incoming connections:
client_socket, client_address = server_socket.accept()
Answered on 27/10/2023 Learn IT Courses/Programming Languages/Python
Asynchronous programming is a programming paradigm that allows you to write code that can perform multiple tasks concurrently without blocking the execution of other code. This is particularly useful when dealing with I/O-bound operations. Asynchronous programming enables you to write more efficient and responsive applications by avoiding unnecessary waits.
In Python, asynchronous programming is achieved using the asyncio library and the async and await keywords. Here's how you use async and await in Python:
async def main():
result = await my_async_function()
# Do something with the result
Answered on 26/10/2023 Learn IT Courses/Programming Languages/Python
Answered on 26/10/2023 Learn IT Courses/Programming Languages/Python
import RPi.GPIO as GPIO
import time
GPIO.setmode(GPIO.BCM)
GPIO.setup(17, GPIO.OUT)
try:
while True:
GPIO.output(17, GPIO.HIGH)
time.sleep(1)
GPIO.output(17, GPIO.LOW)
time.sleep(1)
except KeyboardInterrupt:
GPIO.cleanup()
Answered on 26/10/2023 Learn IT Courses/Programming Languages/Python
Class Location
Online Classes (Video Call via UrbanPro LIVE)
Student's Home
Tutor's Home
Years of Experience in Python Training classes
12
Course Duration provided
1-3 months
Seeker background catered to
Corporate company, Educational Institution, Individual
Certification provided
Yes
Python applications taught
Web Development with Python , Data Analysis with Python , Regular Expressions with Python , Help in assignment, Data Science with Python, Web Scraping with Python , Data Extraction with Python , Automation with Python , Testing with Python
Answered on 27/10/2023 Learn IT Courses/Programming Languages/Python
Working with sockets and network programming in Python involves using the socket module, which provides low-level network communication capabilities. You can create client and server applications, exchange data over various network protocols (like TCP and UDP), and perform tasks like sending and receiving data over a network connection.
Here's a basic overview of working with sockets in Python:
import socket
#Create a socket object:
server_socket = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
#Bind the socket to an IP address and port:
server_address = ('127.0.0.1', 12345) # Example IP and port
server_socket.bind(server_address)
#Listen for incoming connections:
server_socket.listen(5)
# Accept incoming connections:
client_socket, client_address = server_socket.accept()
Answered on 27/10/2023 Learn IT Courses/Programming Languages/Python
Asynchronous programming is a programming paradigm that allows you to write code that can perform multiple tasks concurrently without blocking the execution of other code. This is particularly useful when dealing with I/O-bound operations. Asynchronous programming enables you to write more efficient and responsive applications by avoiding unnecessary waits.
In Python, asynchronous programming is achieved using the asyncio library and the async and await keywords. Here's how you use async and await in Python:
async def main():
result = await my_async_function()
# Do something with the result
Answered on 26/10/2023 Learn IT Courses/Programming Languages/Python
Answered on 26/10/2023 Learn IT Courses/Programming Languages/Python
import RPi.GPIO as GPIO
import time
GPIO.setmode(GPIO.BCM)
GPIO.setup(17, GPIO.OUT)
try:
while True:
GPIO.output(17, GPIO.HIGH)
time.sleep(1)
GPIO.output(17, GPIO.LOW)
time.sleep(1)
except KeyboardInterrupt:
GPIO.cleanup()
Answered on 26/10/2023 Learn IT Courses/Programming Languages/Python
Reply to 's review
Enter your reply*
Your reply has been successfully submitted.
Certified
The Certified badge indicates that the Tutor has received good amount of positive feedback from Students.