Skip to main content

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





Comments

Popular posts from this blog

Hiring Now: Software Developer-Home Thali Private Limited

Hiring Now: Software Developer-Home Thali Private Limited  Location: Kamatham Complex, 2nd Floor, Near Vijayasree Hospital, Mahatma Gandhi Inner Ring Road, Guntur 💼 Position: Software Developer 💰 Salary: Based on interview performance 🕒 Interview Timings: 11:00 AM – 2:00 PM 3:00 PM – 5:00 PM 📞 Contact: 9494075426 🔧 Key Responsibilities Design, develop, and maintain software applications Analyze user and business requirements to build effective solutions Test, debug, and troubleshoot applications for quality and reliability Update and optimize existing systems Collaborate with designers, testers & project managers Write clean, efficient, and well-documented code Use Git or similar tools for version control Implement security and data-protection practices Stay updated with new tools, frameworks & technologies 🎓 Desired Skills Strong programming knowledge (Java, Python, JavaScript, etc.) Understanding of web technologies ...

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