Web Designer jobs in Visakhapatnam and Andhrapradesh

amazon products

Web Designer jobs in Visakhapatnam and Andhrapradesh 

We are looking for good Web Designer

Experience Required : Min 1 Year

Job Rols and Responsibulites

Web Designer Responsibilities:

Conceptualizing creative ideas with clients.

Testing and improving the design of the website.

Establishing design guidelines, standards, and best practices.

Maintaining the appearance of websites by enforcing content standards.

Designing visual imagery for websites and ensuring that they are in line with branding for clients.

Working with different content management systems.

Communicating design ideas using user flows, process flows, site map

Incorporating functionalities and features into websites.

Designing sample pages including colors and fonts.

Preparing design plans and presenting the website structure.


Skills:

Adobe Photoshop,Dreamweaver,HTML,CSS3,Jquery,Java scripts good,Bootstrap.

No.Of Vacancies : 2 Vacancies

Work Location : Visakhapatnam

Company Website : http://www.thecolourmoon.com/

Phone : 9676600666,9885281291

Address:

4th floor,D.no 47-3-28/33

Bharat Towers,5ht Lane,Dwarakanagar

Visakhapatnam


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

Modify ad Delete the values of the dictionary keys-Remove items from the dictionary

 #Modify the values of the dictionary keys:

employee={"empid":101,"empname":"ramesh","salary":45000,"jobdesc":"developer"}

print(employee) #print all key values in dictionary

employee["jobdesc"]="Software"

print(employee)

employee.update({"compnayname":"google","address":"KPHB Colony"})

print(employee) #update more than one pair or item


#Remove items from the dictionary

pop(key[,d]) : Return and removes the item with the key and return its value. If the key is not found, it raises KeyError.

employee={"empid":101,"empname":"ramesh","salary":45000,"jobdesc":"developer"}

deleted_item=employee.popitem() #remove last inserted item from the dictionary

print(deleted_item) # print deleted item

print(employee) #print remaining itens in dictionay


# Remove key 'jobdesc' from the dictionary

deleted_item = employee.pop('jobdesc')

print(deleted_item)  

print(employee)


# remove all item (key-values) from dict

employee.clear()

print(employee)  


python numpy and Matplotlib Library

Matplotlib is a comprehensive library for creating static, animated, and interactive visualizations in Python.

Matplotlib is a plotting library for Python. It is used along with NumPy to provide an environment that is an effective open source alternative for MatLab.

how to install Numpy and Matplotlib library

cmd:

c:/> pip install numpy

c:/>pip install matplotlib


import numpy as np

import matplotlib.pyplot as plt

a=[0,1,2,3,4,6,7,8]

b=[0,3,5,7,9,11,13,15]

plt.plot(a,b)

plt.show()

python matplotlib and numpy


Spelling Correction with Python-python textblod module install

 #Spelling Correction with Python 

# how to check spelling correction in python using textblod

from textblob import TextBlob

def Convert(string):

    li=list(string.split())

    return li

str1=input("enter your word:")

words=Convert(str1)

corrected_words=[]

for i in words:

    corrected_words.append(TextBlob(i))

print("wrong words?",words)

print("Corrected words are")

for i in corrected_words:

    print(i.correct(),end="")









#python coding, #python spelling correction module, #python training, #python textblob,







Python Accessing elements of dictionary-all keys() all values() all items()

Python Accessing elements of dictionary-all keys() all values() all items() 

#Accessing elements of dictionary

emp={"empname":"krishna","jobdesc":"software programmer","salary":34000}

print(emp['empname'])    #access value using name

print(emp.get('salary')) #get key value using key name in get function

#get all keys and values

#keys(): return the list of all keys in present dictionary

#ex:

emp={"empname":"krishna","jobdesc":"software programmer","salary":34000}

print(emp.keys())

print(type(emp.keys()))


#values():return the list of all values in present dictionary

#ex:

emp={"empname":"krishna","jobdesc":"software programmer","salary":34000}

print(emp.values())

print(type(emp.values()))


#items():return all the items present in the dictionary. each item will be inside a tuple as a      key-value pair.

emp={"empname":"krishna","jobdesc":"software programmer","salary":34000}

print(emp.items())

print(type(emp.items()))


#Iterating a dictionary:

emp={"empname":"krishna","jobdesc":"software programmer","salary":34000}

for x in emp:

    print(x)

note:it will display only keys

emp={"empname":"krishna","jobdesc":"software programmer","salary":34000}

print('key', ':', 'value')

for key in emp:

    print(key, ':', emp[key])

# using items() method

print('key', ':', 'value')

for key_value in emp.items():

    print(key_value[0], key_value[1])


#find the length of the dictionary

emp={"empname":"krishna","jobdesc":"software programmer","salary":34000}

print(len(emp))


#adding new keys in dictionary 

emp={"empname":"krishna","jobdesc":"software programmer","salary":34000}

emp["empno"]=101 #single item adding

print(emp)

emp.update({"doj":"12/09/2022","company":"google"})

print(emp)




#python dictionary,#dictionary keys(),#dictionary values(),#dictionary items(),
#python datatypes,#python dict(),#dictionary accessing elements,#all keys(),#all vlaues(), #all items()

How to Creating a dictionary in Python datatypes-Python Dictionary and Dict

How to Creating a dictionary in Python datatypes 

three ways to create a dictionary.


Using curly brackets: The dictionaries are created by enclosing the comma-separated Key: Value pairs inside the {} curly brackets. The colon ‘:‘ is used to separate the key and value in a pair.

Creating a dictionary in Python

ex:

employee = {"empname": "raemsh", "jobdesc": "Software Developer", "salary":88000}

print(employee)


Using dict() constructor:  Create a dictionary by passing the comma-separated key: value pairs inside the dict().

ex:

emp=dict({"empname":"krishna","jobdesc":"Python Developer","salaru":120000})

print(emp)


Using sequence having each item as a pair (key-value)

ex:

emp=dict([("empname","ravikrishna"),("jobdesc","software developer"),("salary",130000)])

print(emp)


# create dictionary with value as a list

ex:

emp = {"empname": "mohan rao", "empnumber": [987, 654,3210]}

print(emp)




#Creating a dictionary in Python, #creating python dictionary, #python dict(), #python dict constructor, #python jobs, #python programming, #python development





Latest Post

How to Generate Barcode and QR code For Our Products

 మీ products కి barcode / QR code generate చేయాలంటే OPTION 1: ONLINE (No Coding – Quick) Best for small shops / beginners 👉Free websites: T...