UrbanPro
true
Sudheer S django trainer in Bangalore

Sudheer S

Tutor

Ambalipura, Bangalore, India - 560035.

2 Students

Contact
Referral Discount: Get ₹ 250 off when you make a payment to start classes. Get started by Booking a Demo.

Details verified of Sudheer S

Identity

Education

Know how UrbanPro verifies Tutor details

Identity is verified based on matching the details uploaded by the Tutor with government databases.

Overview

Currently, I am working as a Python and Perl developer in a reputed product based company. <br/>I have 5+ Years of IT industrial experience with exceptional skills in Python and Perl scripts, Django, Flask, Pyramid, CGI , algorithms, data structures and web application development. <br/> I won best faculty award 6 times for delivering Python and Perl sessions for one of the IT giants. <br/> Proven expertise and received client's best appreciations several times for handling high level projects. I got appreciations from managers for developing scripts with efficient algorithms.

Languages Spoken

English

Education

NIT Durgapur 2012

Master of Engineering - Master of Technology (M.E./M.Tech.)

Address

Ambalipura, Bangalore, India - 560035

Verified Info

ID Verified

Phone Verified

Email Verified

Facebook Verified

Report this Profile

Is this listing inaccurate or duplicate? Any other problem?

Please tell us about the problem and we will fix it.

Please describe the problem that you see in this page.

Type the letters as shown below *

Please enter the letters as show below

Teaches

django

Class Location

Online (video chat via skype, google hangout etc)

Student's Home

Tutor's Home

Years of Experience in django

5

Teaching Experience in detail in django

I have been working in Django and Flask projects for the past 4 years.

Data Science Classes

Class Location

Online (video chat via skype, google hangout etc)

Student's Home

Tutor's Home

Years of Experience in Data Science Classes

10

Data science techniques

Python

Teaching Experience in detail in Data Science Classes

I have good experience in handling different data science and machine learning projects using python. I explain datascience concepts and projects making the student understand the core of the subject.

React JS Training

Class Location

Online (video chat via skype, google hangout etc)

Student's Home

Tutor's Home

Years of Experience in React JS Training

13

Teaching Experience in detail in React JS Training

Hands-on experience with React Hooks, TypeScript, and custom hooks to enhance code maintainability and reusability. Seasoned React.js developer with 13 years of experience in building scalable and high-performance web applications.Proficient in optimizing React applications for performance using techniques like memoization, lazy loading, and code splitting.

Documents (2)

Assignment

Python course contents

Reviews (1)

5 out of 5 1 review

Sudheer S https://p.urbanpro.com/tv-prod/member/photo/2001840-small.jpg Ambalipura
5.0051
Sudheer S
C

Perl Training

"An awesome trainer. Had lot of grip in subject . Really helpful for those who seek carreer in programming. "

Have you attended any class with Sudheer?

FAQs

1. Which classes do you teach?

I teach Data Science, React JS and django Classes.

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 5 years.

Lessons (9)

What is a generator?

A generator is a function that has one or more yield statements. Example: >>>def gen_demo(a): yield a a = a+10 yield a a = a+30 yield a >>>gen_a...

19/06/2017
0 0
0
map function in python

The function map takes a function and an iterable as arguments and returns a new iterable with the function applied to each argument. Example: def add_five(x): return x+5 nums = result = list(map(add_five,...

10/04/2017
0 0
0
How to know if an object is iterable?

An object in python is said to be an iterable if it obeys one of the following two rules:- 1. Object must consist of __getitem__ method 2. Object must consist of __iter__ method. String objects generally...

07/04/2017
0 0
0

Answers by Sudheer (14)

Answered on 21/10/2017 Learn IT Courses/Programming Languages/Python

Python makes u feel like u r doing something interesting and it's exceptional modules availability can smash up any requirement!
Answers 2 Comments
Dislike Bookmark

Answered on 21/10/2017 Learn IT Courses/Programming Languages/Python

Depends on ur interest and requirement. But Python is very simple to code.
Answers 2 Comments
Dislike Bookmark

Answered on 21/10/2017 Learn IT Courses/Programming Languages/Python

Learn Django and u wil take back this question!
Answers 3 Comments
Dislike Bookmark

Answered on 21/10/2017 Learn IT Courses/Programming Languages/Python

OOPS and frequently used modules
Answers 2 Comments
Dislike Bookmark

Answered on 21/10/2017 Learn IT Courses/Programming Languages/Python

Django and bootstrap
Answers 1 Comments
Dislike Bookmark

Teaches

django

Class Location

Online (video chat via skype, google hangout etc)

Student's Home

Tutor's Home

Years of Experience in django

5

Teaching Experience in detail in django

I have been working in Django and Flask projects for the past 4 years.

Data Science Classes

Class Location

Online (video chat via skype, google hangout etc)

Student's Home

Tutor's Home

Years of Experience in Data Science Classes

10

Data science techniques

Python

Teaching Experience in detail in Data Science Classes

I have good experience in handling different data science and machine learning projects using python. I explain datascience concepts and projects making the student understand the core of the subject.

React JS Training

Class Location

Online (video chat via skype, google hangout etc)

Student's Home

Tutor's Home

Years of Experience in React JS Training

13

Teaching Experience in detail in React JS Training

Hands-on experience with React Hooks, TypeScript, and custom hooks to enhance code maintainability and reusability. Seasoned React.js developer with 13 years of experience in building scalable and high-performance web applications.Proficient in optimizing React applications for performance using techniques like memoization, lazy loading, and code splitting.

5 out of 5 1 review

Sudheer S
C

Perl Training

"An awesome trainer. Had lot of grip in subject . Really helpful for those who seek carreer in programming. "

Have you attended any class with Sudheer?

Answers by Sudheer S (14)

Answered on 21/10/2017 Learn IT Courses/Programming Languages/Python

Python makes u feel like u r doing something interesting and it's exceptional modules availability can smash up any requirement!
Answers 2 Comments
Dislike Bookmark

Answered on 21/10/2017 Learn IT Courses/Programming Languages/Python

Depends on ur interest and requirement. But Python is very simple to code.
Answers 2 Comments
Dislike Bookmark

Answered on 21/10/2017 Learn IT Courses/Programming Languages/Python

Learn Django and u wil take back this question!
Answers 3 Comments
Dislike Bookmark

Answered on 21/10/2017 Learn IT Courses/Programming Languages/Python

OOPS and frequently used modules
Answers 2 Comments
Dislike Bookmark

Answered on 21/10/2017 Learn IT Courses/Programming Languages/Python

Django and bootstrap
Answers 1 Comments
Dislike Bookmark

Contact

Load More

Lessons (9)

What is a generator?

A generator is a function that has one or more yield statements. Example: >>>def gen_demo(a): yield a a = a+10 yield a a = a+30 yield a >>>gen_a...

19/06/2017
0 0
0
map function in python

The function map takes a function and an iterable as arguments and returns a new iterable with the function applied to each argument. Example: def add_five(x): return x+5 nums = result = list(map(add_five,...

10/04/2017
0 0
0
How to know if an object is iterable?

An object in python is said to be an iterable if it obeys one of the following two rules:- 1. Object must consist of __getitem__ method 2. Object must consist of __iter__ method. String objects generally...

07/04/2017
0 0
0

Contact

Load More

Sudheer S describes himself as Tutor. He conducts classes in Data Science, React JS and django. Sudheer is located in Ambalipura, Bangalore. Sudheer takes at students Home and Online Classes- via online medium. He has 13 years of teaching experience . Sudheer has completed Master of Engineering - Master of Technology (M.E./M.Tech.) from NIT Durgapur in 2012. HeĀ is well versed in English. Sudheer has got 1 reviews till now with 100% positive feedback.

X

Share this Profile

Recommended Profiles

Malhar Lathkar

Malhar Lathkar photo Shivajinagar, Nanded

Azhar Uddin

Azhar Uddin photo HSR Layout Sector 6, Bangalore

Nalinee Choudhary

Nalinee Choudhary photo Brookefield, Bangalore

Anil Kumar Gupta

Anil Kumar Gupta photo Nagari Niwara, Goregaon East, Mumbai

Purushotham Sannakariyappa

Purushotham Sannakariyappa photo J P Nagar, Bangalore

Sandeep B.

Sandeep B. photo Aundh IT Park, Pune

Reply to 's review

Enter your reply*

1500/1500

Please enter your reply

Your reply should contain a minimum of 10 characters

Your reply has been successfully submitted.

Certified

The Certified badge indicates that the Tutor has received good amount of positive feedback from Students.

Different batches available for this Course

This website uses cookies

We use cookies to improve user experience. Choose what cookies you allow us to use. You can read more about our Cookie Policy in our Privacy Policy

Accept All
Decline All

UrbanPro.com is India's largest network of most trusted tutors and institutes. Over 55 lakh students rely on UrbanPro.com, to fulfill their learning requirements across 1,000+ categories. Using UrbanPro.com, parents, and students can compare multiple Tutors and Institutes and choose the one that best suits their requirements. More than 7.5 lakh verified Tutors and Institutes are helping millions of students every day and growing their tutoring business on UrbanPro.com. Whether you are looking for a tutor to learn mathematics, a German language trainer to brush up your German language skills or an institute to upgrade your IT skills, we have got the best selection of Tutors and Training Institutes for you. Read more