CoderFunda
  • Home
  • About us
    • Contact Us
    • Disclaimer
    • Privacy Policy
    • About us
  • Home
  • Php
  • HTML
  • CSS
  • JavaScript
    • JavaScript
    • Jquery
    • JqueryUI
    • Stock
  • SQL
  • Vue.Js
  • Python
  • Wordpress
  • C++
    • C++
    • C
  • Laravel
    • Laravel
      • Overview
      • Namespaces
      • Middleware
      • Routing
      • Configuration
      • Application Structure
      • Installation
    • Overview
  • DBMS
    • DBMS
      • PL/SQL
      • SQLite
      • MongoDB
      • Cassandra
      • MySQL
      • Oracle
      • CouchDB
      • Neo4j
      • DB2
      • Quiz
    • Overview
  • Entertainment
    • TV Series Update
    • Movie Review
    • Movie Review
  • More
    • Vue. Js
    • Php Question
    • Php Interview Question
    • Laravel Interview Question
    • SQL Interview Question
    • IAS Interview Question
    • PCS Interview Question
    • Technology
    • Other

11 April, 2022

Python Dictionary

 Programing Coderfunda     April 11, 2022     Python     No comments   

Python Dictionary

Python Dictionary is used to store the data in a key-value pair format. The dictionary is the data type in Python, which can simulate the real-life data arrangement where some specific value exists for some particular key. It is the mutable data-structure. The dictionary is defined into element Keys and values.

  • Keys must be a single element
  • Value can be any type such as list, tuple, integer, etc.

In other words, we can say that a dictionary is the collection of key-value pairs where the value can be any Python object. In contrast, the keys are the immutable Python object, i.e., Numbers, string, or tuple.

Creating the dictionary

The dictionary can be created by using multiple key-value pairs enclosed with the curly brackets {}, and each key is separated from its value by the colon (:).The syntax to define the dictionary is given below.

Syntax:

  1. Dict = {"Name": "Tom", "Age": 22}    

In the above dictionary Dict, The keys Name and Age are the string that is an immutable object.

Let's see an example to create a dictionary and print its content.

  1. Employee = {"Name": "John", "Age": 29, "salary":25000,"Company":"GOOGLE"}    
  2. print(type(Employee))    
  3. print("printing Employee data .... ")    
  4. print(Employee)    

Output

<class 'dict'>
Printing Employee data .... 
{'Name': 'John', 'Age': 29, 'salary': 25000, 'Company': 'GOOGLE'}

Python provides the built-in function dict() method which is also used to create dictionary. The empty curly braces {} is used to create empty dictionary.

  1. # Creating an empty Dictionary   
  2. Dict = {}   
  3. print("Empty Dictionary: ")   
  4. print(Dict)   
  5.   
  6. # Creating a Dictionary   
  7. # with dict() method   
  8. Dict = dict({1: 'Java', 2: 'T', 3:'Point'})   
  9. print("\nCreate Dictionary by using  dict(): ")   
  10. print(Dict)   
  11.   
  12. # Creating a Dictionary   
  13. # with each item as a Pair   
  14. Dict = dict([(1, 'Devansh'), (2, 'Sharma')])   
  15. print("\nDictionary with each item as a pair: ")   
  16. print(Dict)  

Output:

Empty Dictionary: 
{}

Create Dictionary by using dict(): 
{1: 'Java', 2: 'T', 3: 'Point'}

Dictionary with each item as a pair: 
{1: 'Devansh', 2: 'Sharma'}

Accessing the dictionary values

We have discussed how the data can be accessed in the list and tuple by using the indexing.

However, the values can be accessed in the dictionary by using the keys as keys are unique in the dictionary.

The dictionary values can be accessed in the following way.

  1. Employee = {"Name": "John", "Age": 29, "salary":25000,"Company":"GOOGLE"}  
  2. print(type(Employee))  
  3. print("printing Employee data .... ")  
  4. print("Name : %s" %Employee["Name"])  
  5. print("Age : %d" %Employee["Age"])  
  6. print("Salary : %d" %Employee["salary"])  
  7. print("Company : %s" %Employee["Company"])  

Output:

<class 'dict'>
printing Employee data .... 
Name : John
Age : 29
Salary : 25000
Company : GOOGLE

Python provides us with an alternative to use the get() method to access the dictionary values. It would give the same result as given by the indexing.

Adding dictionary values

The dictionary is a mutable data type, and its values can be updated by using the specific keys. The value can be updated along with key Dict[key] = value. The update() method is also used to update an existing value.

Note: If the key-value already present in the dictionary, the value gets updated. Otherwise, the new keys added in the dictionary.

Let's see an example to update the dictionary values.

Example - 1:

  1. # Creating an empty Dictionary   
  2. Dict = {}   
  3. print("Empty Dictionary: ")   
  4. print(Dict)   
  5.     
  6. # Adding elements to dictionary one at a time   
  7. Dict[0] = 'Peter'  
  8. Dict[2] = 'Joseph'  
  9. Dict[3] = 'Ricky'  
  10. print("\nDictionary after adding 3 elements: ")   
  11. print(Dict)   
  12.     
  13. # Adding set of values    
  14. # with a single Key   
  15. # The Emp_ages doesn't exist to dictionary  
  16. Dict['Emp_ages'] = 20, 33, 24  
  17. print("\nDictionary after adding 3 elements: ")   
  18. print(Dict)   
  19.     
  20. # Updating existing Key's Value   
  21. Dict[3] = 'JavaTpoint'  
  22. print("\nUpdated key value: ")   
  23. print(Dict)    

Output:

Empty Dictionary: 
{}

Dictionary after adding 3 elements: 
{0: 'Peter', 2: 'Joseph', 3: 'Ricky'}

Dictionary after adding 3 elements: 
{0: 'Peter', 2: 'Joseph', 3: 'Ricky', 'Emp_ages': (20, 33, 24)}

Updated key value: 
{0: 'Peter', 2: 'Joseph', 3: 'JavaTpoint', 'Emp_ages': (20, 33, 24)}

Example - 2:

  1. Employee = {"Name": "John", "Age": 29, "salary":25000,"Company":"GOOGLE"}    
  2. print(type(Employee))    
  3. print("printing Employee data .... ")    
  4. print(Employee)    
  5. print("Enter the details of the new employee....");    
  6. Employee["Name"] = input("Name: ");    
  7. Employee["Age"] = int(input("Age: "));    
  8. Employee["salary"] = int(input("Salary: "));    
  9. Employee["Company"] = input("Company:");    
  10. print("printing the new data");    
  11. print(Employee)    

Output:

Empty Dictionary: 
{}

Dictionary after adding 3 elements: 
{0: 'Peter', 2: 'Joseph', 3: 'Ricky'}

Dictionary after adding 3 elements: 
{0: 'Peter', 2: 'Joseph', 3: 'Ricky', 'Emp_ages': (20, 33, 24)}

Updated key value: 
{0: 'Peter', 2: 'Joseph', 3: 'JavaTpoint', 'Emp_ages': (20, 33, 24)}

Deleting elements using del keyword

The items of the dictionary can be deleted by using the del keyword as given below.

  1. Employee = {"Name": "John", "Age": 29, "salary":25000,"Company":"GOOGLE"}    
  2. print(type(Employee))    
  3. print("printing Employee data .... ")    
  4. print(Employee)    
  5. print("Deleting some of the employee data")     
  6. del Employee["Name"]    
  7. del Employee["Company"]    
  8. print("printing the modified information ")    
  9. print(Employee)    
  10. print("Deleting the dictionary: Employee");    
  11. del Employee    
  12. print("Lets try to print it again ");    
  13. print(Employee)    

Output:

<class 'dict'>
printing Employee data .... 
{'Name': 'John', 'Age': 29, 'salary': 25000, 'Company': 'GOOGLE'}
Deleting some of the employee data
printing the modified information 
{'Age': 29, 'salary': 25000}
Deleting the dictionary: Employee
Lets try to print it again 
NameError: name 'Employee' is not defined

The last print statement in the above code, it raised an error because we tried to print the Employee dictionary that already deleted.

  • Using pop() method

The pop() method accepts the key as an argument and remove the associated value. Consider the following example.

  1. # Creating a Dictionary   
  2. Dict = {1: 'JavaTpoint', 2: 'Peter', 3: 'Thomas'}   
  3. # Deleting a key    
  4. # using pop() method   
  5. pop_ele = Dict.pop(3)   
  6. print(Dict)  

Output:

{1: 'JavaTpoint', 2: 'Peter'}

Python also provides a built-in methods popitem() and clear() method for remove elements from the dictionary. The popitem() removes the arbitrary element from a dictionary, whereas the clear() method removes all elements to the whole dictionary.

Iterating Dictionary

A dictionary can be iterated using for loop as given below.

Example 1

# for loop to print all the keys of a dictionary

  1. Employee = {"Name": "John", "Age": 29, "salary":25000,"Company":"GOOGLE"}    
  2. for x in Employee:    
  3.     print(x)  

Output:

Name
Age
salary
Company

Example 2

#for loop to print all the values of the dictionary

  1. Employee = {"Name": "John", "Age": 29, "salary":25000,"Company":"GOOGLE"}    
  2. for x in Employee:    
  3.     print(Employee[x])  

Output:

John
29
25000
GOOGLE

Example - 3

#for loop to print the values of the dictionary by using values() method.

  1. Employee = {"Name": "John", "Age": 29, "salary":25000,"Company":"GOOGLE"}    
  2. for x in Employee.values():    
  3.     print(x)  

Output:

John
29
25000
GOOGLE

Example 4

#for loop to print the items of the dictionary by using items() method.

  1. Employee = {"Name": "John", "Age": 29, "salary":25000,"Company":"GOOGLE"}    
  2. for x in Employee.items():    
  3.     print(x)  

Output:

('Name', 'John')
('Age', 29)
('salary', 25000)
('Company', 'GOOGLE')

Properties of Dictionary keys

1. In the dictionary, we cannot store multiple values for the same keys. If we pass more than one value for a single key, then the value which is last assigned is considered as the value of the key.

Consider the following example.

  1. Employee={"Name":"John","Age":29,"Salary":25000,"Company":"GOOGLE","Name":"John"}    
  2. for x,y in Employee.items():    
  3.     print(x,y)    

Output:

Name John
Age 29
Salary 25000
Company GOOGLE

2. In python, the key cannot be any mutable object. We can use numbers, strings, or tuples as the key, but we cannot use any mutable object like the list as the key in the dictionary.

Consider the following example.

  1. Employee = {"Name": "John", "Age": 29, "salary":25000,"Company":"GOOGLE",[100,201,301]:"Department ID"}    
  2. for x,y in Employee.items():    
  3.     print(x,y)    

Output:

Traceback (most recent call last):
  File "dictionary.py", line 1, in 
    Employee = {"Name": "John", "Age": 29, "salary":25000,"Company":"GOOGLE",[100,201,301]:"Department ID"}
TypeError: unhashable type: 'list'

Built-in Dictionary functions

The built-in python dictionary methods along with the description are given below.

SNFunctionDescription
1cmp(dict1, dict2)It compares the items of both the dictionary and returns true if the first dictionary values are greater than the second dictionary, otherwise it returns false.
2len(dict)It is used to calculate the length of the dictionary.
3str(dict)It converts the dictionary into the printable string representation.
4type(variable)It is used to print the type of the passed variable.

Built-in Dictionary methods

The built-in python dictionary methods along with the description are given below.

SNMethodDescription
1dic.clear()It is used to delete all the items of the dictionary.
2dict.copy()It returns a shallow copy of the dictionary.
3dict.fromkeys(iterable, value = None, /)Create a new dictionary from the iterable with the values equal to value.
4dict.get(key, default = "None")It is used to get the value specified for the passed key.
5dict.has_key(key)It returns true if the dictionary contains the specified key.
6dict.items()It returns all the key-value pairs as a tuple.
7dict.keys()It returns all the keys of the dictionary.
8dict.setdefault(key,default= "None")It is used to set the key to the default value if the key is not specified in the dictionary
9dict.update(dict2)It updates the dictionary by adding the key-value pair of dict2 to this dictionary.
10dict.values()It returns all the values of the dictionary.
11len()
12popItem()
13pop()
14count()
15index()
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg
Email ThisBlogThis!Share to XShare to Facebook
Newer Post Older Post Home

0 comments:

Post a Comment

Thanks

Meta

Popular Posts

  • Generate Migrations from an Existing Database With the Migration Generator Package
    Laravel Migration Generator Migration Generator for Laravel is a package by Bennett Treptow to generate migrations from existing database ...
  • 'Ramayana' to have 'Baahubali'-style cliffhanger ending
    image/jpeg https://timesofindia.indiatimes.com/entertainment/hindi/bollywood/news/ramayana-to-end-on-baahubali-style-cliffhanger-director-ni...
  • Vijay talks about being harassed in an uncomfortable encounter with a model coordinator
    image/jpeg https://timesofindia.indiatimes.com/entertainment/hindi/bollywood/news/he-was-getting-touchy-feely-vijay-varma-opens-up-about-bei...
  • SRK's King eyes record-breaking Rs 50 crore music rights deal
    image/jpeg https://timesofindia.indiatimes.com/entertainment/hindi/bollywood/news/shah-rukh-khans-king-eyes-record-breaking-rs-50-crore-musi...
  • 'Spider-Man: Brand New Day' records Rs 300 crore weekend in India
    image/jpeg https://timesofindia.indiatimes.com/entertainment/english/hollywood/box-office/spider-man-brand-new-day-box-office-collection-day...

Categories

  • Ajax (26)
  • Bootstrap (30)
  • DBMS (42)
  • HTML (12)
  • HTML5 (45)
  • JavaScript (10)
  • Jquery (34)
  • Jquery UI (2)
  • JqueryUI (32)
  • Laravel (1017)
  • Laravel Tutorials (23)
  • Laravel-Question (6)
  • Magento (9)
  • Magento 2 (95)
  • MariaDB (1)
  • MySql Tutorial (2)
  • PHP-Interview-Questions (3)
  • Php Question (13)
  • Python (36)
  • RDBMS (13)
  • SQL Tutorial (79)
  • Vue.js Tutorial (69)
  • Wordpress (150)
  • Wordpress Theme (3)
  • codeigniter (108)
  • oops (4)
  • php (853)

Social Media Links

  • Follow on Twitter
  • Like on Facebook
  • Subscribe on Youtube
  • Follow on Instagram

Pages

  • Home
  • Contact Us
  • Privacy Policy
  • About us

Blog Archive

  • ►  2026 (117)
    • ►  08/02 - 08/09 (8)
    • ►  07/26 - 08/02 (108)
    • ►  06/28 - 07/05 (1)
  • ►  2025 (4)
    • ►  07/06 - 07/13 (2)
    • ►  06/29 - 07/06 (2)
  • ►  2024 (486)
    • ►  09/15 - 09/22 (30)
    • ►  09/08 - 09/15 (35)
    • ►  09/01 - 09/08 (35)
    • ►  08/11 - 08/18 (2)
    • ►  08/04 - 08/11 (33)
    • ►  07/28 - 08/04 (30)
    • ►  07/07 - 07/14 (11)
    • ►  06/30 - 07/07 (35)
    • ►  06/23 - 06/30 (5)
    • ►  06/02 - 06/09 (31)
    • ►  05/26 - 06/02 (20)
    • ►  05/05 - 05/12 (29)
    • ►  04/28 - 05/05 (26)
    • ►  04/07 - 04/14 (10)
    • ►  03/31 - 04/07 (34)
    • ►  03/24 - 03/31 (10)
    • ►  03/03 - 03/10 (35)
    • ►  02/25 - 03/03 (15)
    • ►  02/04 - 02/11 (22)
    • ►  01/28 - 02/04 (30)
    • ►  01/07 - 01/14 (8)
  • ►  2023 (484)
    • ►  12/31 - 01/07 (35)
    • ►  12/24 - 12/31 (10)
    • ►  12/03 - 12/10 (33)
    • ►  11/26 - 12/03 (20)
    • ►  11/05 - 11/12 (35)
    • ►  10/29 - 11/05 (20)
    • ►  10/22 - 10/29 (9)
    • ►  10/15 - 10/22 (7)
    • ►  10/08 - 10/15 (9)
    • ►  10/01 - 10/08 (10)
    • ►  09/24 - 10/01 (9)
    • ►  09/17 - 09/24 (9)
    • ►  09/10 - 09/17 (7)
    • ►  09/03 - 09/10 (9)
    • ►  08/27 - 09/03 (9)
    • ►  08/20 - 08/27 (8)
    • ►  08/13 - 08/20 (8)
    • ►  08/06 - 08/13 (8)
    • ►  07/30 - 08/06 (8)
    • ►  07/23 - 07/30 (7)
    • ►  07/16 - 07/23 (8)
    • ►  07/09 - 07/16 (7)
    • ►  07/02 - 07/09 (8)
    • ►  06/25 - 07/02 (7)
    • ►  06/18 - 06/25 (7)
    • ►  06/11 - 06/18 (7)
    • ►  06/04 - 06/11 (11)
    • ►  05/28 - 06/04 (7)
    • ►  05/21 - 05/28 (8)
    • ►  05/14 - 05/21 (11)
    • ►  05/07 - 05/14 (7)
    • ►  04/30 - 05/07 (7)
    • ►  04/23 - 04/30 (8)
    • ►  04/16 - 04/23 (9)
    • ►  04/09 - 04/16 (7)
    • ►  04/02 - 04/09 (4)
    • ►  03/26 - 04/02 (21)
    • ►  03/19 - 03/26 (2)
    • ►  03/12 - 03/19 (9)
    • ►  03/05 - 03/12 (26)
    • ►  02/26 - 03/05 (25)
    • ►  01/15 - 01/22 (7)
    • ►  01/08 - 01/15 (1)
  • ▼  2022 (1037)
    • ►  12/11 - 12/18 (13)
    • ►  12/04 - 12/11 (1)
    • ►  11/27 - 12/04 (40)
    • ►  11/06 - 11/13 (1)
    • ►  10/16 - 10/23 (13)
    • ►  09/04 - 09/11 (5)
    • ►  08/21 - 08/28 (24)
    • ►  08/14 - 08/21 (24)
    • ►  07/03 - 07/10 (9)
    • ►  06/19 - 06/26 (3)
    • ►  05/29 - 06/05 (3)
    • ►  05/22 - 05/29 (3)
    • ►  05/15 - 05/22 (109)
    • ►  05/01 - 05/08 (7)
    • ►  04/24 - 05/01 (7)
    • ►  04/17 - 04/24 (64)
    • ▼  04/10 - 04/17 (115)
      • Laravel Auto Routes Package
      • Add Version Control to Laravel Models
      • Dispatch Laravel Jobs Via Artisan
      • Build Typescript Interfaces for Laravel Models
      • Laravel Prose Linter
      • Laravel Stats: Track Application Stats and Their C...
      • A Flat-File Database Driver for Eloquent
      • Composer Normalizer Package
      • Flexible Fields for Laravel Nova
      • PHP Pipe Operator Package
      • Regex Helpers for Laravel
      • API Version Control in Laravel
      • Laravel Mail Export
      • Immutable IP Address Library For PHP
      • HTTP Client Dashboard for Laravel
      • View Presenter Classes for Eloquent Models
      • Laravel Cashier for Openpay Billing Services
      • Laravel Job Chainer
      • A package for PHP to interact with the GitHub Spon...
      • Advanced Container Package for Laravel
      • JSON-RPC Server for Laravel
      • Search Across Multiple Eloquent Models With Cross-...
      • Enhanced PostgresSQL Driver for Laravel
      • Rich Text for Laravel
      • Larastan v1.0 Released
      • Create a CSV file in Magento 2
      • CSV File Download Programmatically in Magento 2
      • Provide Country and Other Locale Data in Laravel
      • Standardize Data Formats in Your Laravel Application
      • Automatically Sanitize Model Data
      • Conduct better email testing with Mail Intercept
      • Laravel Cache Helper Package
      • Log Routes Statistics for Users and Teams
      • Laravel Livewire Calendar Component
      • Laravel and Vue Translation Package
      • Cagilo: Blade Components for Laravel
      • Laravel Defibrillator: Keep Application Tasks Runn...
      • Blade Component to Render Markdown in Laravel
      • Ban Eloquent Models With the Laravel Ban Package
      • Output Eloquent Builder SQL to Your Favorite Debug...
      • Livewire Form Builder
      • Blade Component to Serve Images and Download Files
      • Laravel Geographical Calculator
      • Track the Health of Your Application With Laravel ...
      • Laravel Auto Binder: Bind Interfaces to Implementa...
      • GetCandy E-commerce Package for Laravel
      • OpenAI SDK for PHP
      • Create Rich Data Objects in Laravel
      • Blast — Storybook UI Development for Laravel Blade
      • Soft Delete Child Models When a Parent is Deleted
      • Enforce the Disposal of Objects in PHP
      • Crawl and Index Your Website with Laravel Site Search
      • Toast Notifications for the TALL Stack
      • Use the Shopify API in Laravel With the Laravel Sh...
      • Laravel Subscribable Notifications
      • Laravel Authentication Logs
      • Search Through Models with Laravel Searchable
      • Advanced Eloquent Model Filters
      • Serialization for Eloquent's QueryBuilder
      • Send Email With Exchange Web Services in Laravel
      • Use Apache Kafka With Laravel
      • Define Model Attributes With Laravel Fluent
      • Laravel Console Spinner
      • Vue Lazy Image Component
      • Laravel Migration Actions
      • Migrator is a GUI Migration Manager for Laravel
      • Media Upload Component for Vue 3
      • Generate Intervals of Time With the Laravel Hours ...
      • Alpine.js Focus Plugin
      • Add Likes, Bookmarks, Favorites, and Other Marks W...
      • Laravel DynamoDB Eloquent Models and Query Builder
      • Laravel Facebook Graph API
      • Filament Tables TALL Stack Component
      • Glob-like File and Pattern Matching Utilities for PHP
      • Find Missing Translations with the Laravel Transla...
      • Given-When-Then Plugin for Pest
      • Detect and Change Indentation With PHP
      • Laravel Livewire Form Wizard
      • Cache Chunks of Your Blade Markup With Ease
      • Forward Laravel Logs to Amazon Kinesis
      • Use Emmet-style Abbreviations in Blade Components
      • Keep Laravel .env Synced With Envy
      • Interact with Telegram Bots in Laravel with Telegraph
      • Enum Helpers for PHP
      • Automatic Route Discovery in Laravel
      • Create and Send Digest Emails in Laravel
      • Laravel Google Chat Alerts
      • Calculating Mathematical Statistics in PHP
      • Tailwind CSS Laravel Package
      • Complete Web Scraping toolkit for PHP
      • Laravel Slack Alerts Package
      • Eloquent Inspector for Laravel
      • Improve Debugging Output With Laravel Dumper
      • Write API Integrations in Laravel and PHP Projects...
      • Python exec() Function
      • Python compile() Function
      • Python callable() Function
      • Python bytes() Function
      • Python bool() Function
      • Python bin() Function
      • Python all() Function
      • Python abs() Function
      • Python Built-in Functions
      • Python Function
      • Python Dictionary
      • Python Set
      • Python List Vs Tuple
      • Python Tuple
      • Python List
      • Python String
      • Python Pass
      • Python continue Statement
      • Python break statement
      • Python While loop
      • Python for loop
    • ►  04/03 - 04/10 (73)
    • ►  03/27 - 04/03 (77)
    • ►  03/13 - 03/20 (2)
    • ►  03/06 - 03/13 (25)
    • ►  02/27 - 03/06 (18)
    • ►  02/20 - 02/27 (153)
    • ►  02/13 - 02/20 (187)
    • ►  01/30 - 02/06 (45)
    • ►  01/23 - 01/30 (15)
    • ►  01/16 - 01/23 (1)
  • ►  2021 (412)
    • ►  10/24 - 10/31 (2)
    • ►  07/25 - 08/01 (1)
    • ►  07/11 - 07/18 (10)
    • ►  06/13 - 06/20 (29)
    • ►  05/23 - 05/30 (1)
    • ►  05/02 - 05/09 (24)
    • ►  04/25 - 05/02 (24)
    • ►  04/18 - 04/25 (112)
    • ►  04/11 - 04/18 (1)
    • ►  04/04 - 04/11 (6)
    • ►  03/28 - 04/04 (86)
    • ►  03/21 - 03/28 (19)
    • ►  03/14 - 03/21 (2)
    • ►  03/07 - 03/14 (10)
    • ►  02/28 - 03/07 (1)
    • ►  02/21 - 02/28 (29)
    • ►  02/14 - 02/21 (13)
    • ►  02/07 - 02/14 (12)
    • ►  01/31 - 02/07 (6)
    • ►  01/17 - 01/24 (2)
    • ►  01/10 - 01/17 (8)
    • ►  01/03 - 01/10 (14)
  • ►  2020 (376)
    • ►  12/27 - 01/03 (37)
    • ►  12/20 - 12/27 (92)
    • ►  12/13 - 12/20 (29)
    • ►  12/06 - 12/13 (37)
    • ►  11/29 - 12/06 (4)
    • ►  11/15 - 11/22 (14)
    • ►  11/08 - 11/15 (8)
    • ►  11/01 - 11/08 (2)
    • ►  10/18 - 10/25 (14)
    • ►  10/11 - 10/18 (16)
    • ►  10/04 - 10/11 (10)
    • ►  09/20 - 09/27 (10)
    • ►  09/06 - 09/13 (19)
    • ►  08/30 - 09/06 (26)
    • ►  08/23 - 08/30 (4)
    • ►  08/16 - 08/23 (2)
    • ►  07/12 - 07/19 (48)
    • ►  05/17 - 05/24 (2)
    • ►  01/05 - 01/12 (2)
  • ►  2019 (74)
    • ►  07/07 - 07/14 (6)
    • ►  06/16 - 06/23 (6)
    • ►  02/10 - 02/17 (17)
    • ►  01/13 - 01/20 (37)
    • ►  01/06 - 01/13 (8)
  • ►  2018 (376)
    • ►  12/30 - 01/06 (24)
    • ►  12/16 - 12/23 (8)
    • ►  12/09 - 12/16 (98)
    • ►  12/02 - 12/09 (16)
    • ►  11/18 - 11/25 (36)
    • ►  11/04 - 11/11 (18)
    • ►  10/28 - 11/04 (10)
    • ►  10/21 - 10/28 (26)
    • ►  10/14 - 10/21 (52)
    • ►  10/07 - 10/14 (4)
    • ►  09/30 - 10/07 (2)
    • ►  09/23 - 09/30 (68)
    • ►  09/16 - 09/23 (4)
    • ►  09/09 - 09/16 (4)
    • ►  08/26 - 09/02 (6)

Data Publish News

Loading...

Al Jazeera – Breaking News, World News and Video from Al Jazeera

Loading...

Laravel News

Loading...

Copyright © CoderFunda | Powered by Blogger
Design by Coderfunda | Blogger Theme by Coderfunda | Distributed By Coderfunda