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

Python tuple packing and unpacking - Python coding

Python tuple packing and unpacking python tuple can also be created without using a tuple() class or enclosing the items inside the parentheses. it is called the variable packing #python tuple packing into tuple tuple=23,44,66,'django' print(tuple) print(type(tuple)) #unpacking tuple into variable a,b,c,d=tuple print("a is =",a) print("b is =",b) print("c is =",c) print("d is =",d) print(type(a)) print(type(b)) print(type(c)) print(type(d)) output :  (23, 44, 66, 'django') <class 'tuple'> a is = 23 b is = 44 c is = 66 d is = django <class 'int'> <class 'int'> <class 'int'> <class 'str'>

Python tuples - tuple datatype in python

Python tuples - tuple datatype in python   python tuples are ordered it can store variables of all types that are unchangeable creating tuple in two ways using parenthesis() A tuple is created by enclosing comma separated elements inside rounded brackets. python tuple characteristics:     Ordered : tuples are part of sequence data types     Unchangeable : tuple are unchangeble, we cannot add or delete element     Heterogeneous : means different datatypes Create a tuple using the two ways: #Using parenthesis () tuple=(56,77,88,78,23) print(tuple) print(type(tuple)) output : (56,77,88,78,23) #Using a tuple() constructor x=tuple((56,88,99,34.77,83)) print(x) print(type(x)) output: ((56,88,99,34.77,83)) #Heterogeneous  type tuple elements and nested tuple sampletuple = ('ram',44,45.65,[23,25, 78]) print(sampletuple) output:  ('ram',44,45.65,[23,25, 78])

remove specific element in python list - remove index based element

  #remove specific element in python list list=list([34,55,34,66,77,45.6,23,34,]) print(list) list.remove(66) print(list) output: [34, 55, 34, 66, 77, 45.6, 23, 34] [34, 55, 34, 77, 45.6, 23, 34] #Remove all occurrence of a specific python repeated element mylist = list([26, 4, 26, 26, 8, 12]) for item in mylist:     mylist.remove(26) print(mylist) output :  [4,8,12] #remove item present at given index mylist = list([2, 4, 6, 8, 10, 12]) mylist.pop(2)  #remove 2 index based element print(mylist) output:  [2, 4, 8, 10, 12] # remove item without passing index number(last value remove) using pop() mylist = list([2, 4, 6, 8, 10, 12]) mylist.pop()   print(mylist) output : [2, 4, 6, 8, 10] [2, 4, 8, 10] #remove the range of elements python list with slice: mylist = list([2, 4, 6, 8, 10, 12]) #remove item from index 2 to 5 del mylist[2:5] print(mylist) output: [2, 4, 12] #remove all items starting from index 2 mylist=list([23,44,55,34,53,78,55]) del myl...