Skip to main content

Software Jobs Guntur - Python and Django jobs in Guntur and Vijayawada

 Urgent opening for Python, Django  Trainer| Location Guntur and Vijayawada

Software jobs Guntur

Company name : 
PRAGYATMIKA

Work Location : Guntur

Work from office

EXP : 2-5 yrs

Immediate Joiner Required

Role :Trainer

Need qualified persons who can train freshers, prepare curriculum, modules, schedules etc. In short, the incumbent should be well versed with the complete aspects of imparting training.

Basic job responsibilities :

- We are looking for an enthusiastic Technology Trainer to train and mentor people on Python, Django, Open CV, Numpy, Machine Learning Basics, Data Analytics, etc.

You will develop technical training programs and help others develop skills that will make them better professionals in this field.

- Technical trainers must be extremely knowledgeable in their field of expertise and possess solid technical aptitude.

- Additionally, we expect you to be an excellent communicator, able to explain complex subjects in a clear and interesting way.

Skill and ability requirements :

- Proven experience as a technical trainer

- Proven experience as a Python Developer in live projects

- Knowledge of in-house as well as remote training techniques and tools

- Experience in designing technical course content, especially, AI & ML, Python Backend, Django, AI & ML, Data Analytics.

- Ability to address training needs with complete courses

- Outstanding communication skills and comfortable speaking to crowds

- Excellent organizational and time-management abilities

Academic Qualifications :

MCA , M.Sc. (CS), B,Tech. (CSE), B.Tech. (AI & DS).

Other Benefits:

Health Insurance Benefits

- Performance Incentive

- Leave Encashment

-LIVE Project Opportunities

- International Mentorship Certification through Govt. of UK assessment agency

Job Types: Freelance, Permanent, Full-time, Temporary

Salary: ₹20,000.00 - ₹35,000.00 per month

Benefits:

  • Health insurance
  • Leave encashment
  • Paid sick time

Ability to commute/relocate:

  • Guntur, Andhra Pradesh: Reliably commute or planning to relocate before starting work (Required)

Education:

  • Bachelor's (Preferred)

Experience:

  • Training & development: 2 years (Required)

Language:

  • Telugu (Preferred)



#python trainer in gutnur, #python jobs in guntur , #jobs in guntur, #software jobs in guntur, #django jobs in guntur, #web developer jobs in guntur

Comments

Popular posts from this blog

Software Jobs - Web Developer jobs in Andhra Pradesh, Rajahmundry,

Software Jobs - Web Developer jobs in Andhra Pradesh, Rajahmundry,  Openings: Web Developer  Qualification: BE,Btech,MCA,MSC Experience: 1-5 years Requirements: Should have good experience as a PHP Application developer Hands on Experience in developing the application using MVC architecture. Good to have knowledge in MySQL, Codeignitor, Zend, CakePHP, Joomla, Magneto and Laravel is a plus. Have experience with REST API, JSON, and SOAP. Expertise in HTML5, CSS, Bootstrap, jQuery, Ajax. Experience in taking ownership of product delivery, code quality and architecture. Should be proactive, goal-oriented, reliable and a have a self-structured way of working. Responsibilities: Creating website layout/user interfaces by using standard HTML/CSS practices. Designing well organized databases. Integrating data from various back-end services and databases Be involved in al...

Adding and changing elements in a tuple using insert() and append methods

  Adding and changing elements in a tuple using insert and append: A list is a mutable type, which means we can add or modify values in it, but tuples are immutable, so they cannot be changed. #how to add new element in tuple object using index based tup=(6,75,66,34,23) print(tup) #print all tuple elements newlist=list(tup) #tuple to list convert newlist.insert(2,40) #add new element in list tup=tuple(newlist) #convert list to tuple print(tup) #print all elements in tuple output: (6, 75, 66, 34, 23) (6, 75, 40, 66, 34, 23) #how to add new element in tuple object using apped() method tup=(6,75,66,34,23) newlist=list(tup) newlist.append(22) tup=tuple(newlist) print(tup) output: (6, 75, 66, 34, 23, 22) #Modify nested items of a tuple: then we can change its values in the case of a nested tuple. Ex: tuple1 = (10, 20, [25, 75, 85]) print(tuple1) tuple1[2][0] = 250 print(tuple1) output: (10,20,[250,75,85])      #python tuples, #python training in guntur, #python jobs in gu...

Python Complex Datatypes

Python Complex Datatypes    A complex number is a number with a real and an imaginary component represented as a+bj where a and b contain integers or floating-point values. # both values are int type a = 9 + 8j           print(a)      print(type(a)) # one int and one float values b = 10 + 4.5j        print(b)       print(type(b)) # both values are float type c = 11.2 + 1.2j      print(c) print(type(c))