Skip to main content

Posts

Showing posts from October, 2023

Web Designer jobs in Visakhapatnam and Andhrapradesh

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/ Phon...

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

  Urgent opening for Python, Django  Trainer| Location Guntur and Vijayawada 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 abilit...

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 = empl...

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()

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

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. 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", "emp...

Download Youtube videos using python yt-dlp lib - Youtube video Dowloads

 #Download Youtube videos using python yt-dlp lib import yt_dlp url=input("enter video url") ydl_opts={} with yt_dlp.YoutubeDL(ydl_opts) as ydl:     ydl.download([url]) print("Video downloaded successfully") Note: download yt-dlp lib using pip command >>pip install yt-dlp Demo: