History, asked by Ramiya69, 1 year ago

contrast between harrapan and Mesopotamian civilization.

Answers

Answered by mehul1045
2
Harappan Civilization :-
Harappan civilization was a Bronze Age civilization, mainly in the North-Western regions of South Asia, extending from today's North-Eastern Afghanistan to Pakistan, and North-Western India. It was one of the oldest civilizations of the world.

Mesopotamian Civilization :-
The Mesopotamian civilization was a historical region situated within the Tigris-Euphrates river system, in today's most of Iraq plus Kuwait, the Eastern part of Syria, South-Eastern Turkey, and regions along the Turkish-Syrian and Iran-Iraq borders. It was also one of the oldest civilizations of the world.


Difference Between Harappan and Mesopotamian Civilization -

1) In Harappan civilization, the houses were built to the East of citadel while in Mesopotamian civilization, the houses were built around distinct palaces and temples & dedicated to the patron Gods or Goddesses.

2) Most of the Harappan people lived in small villages while most of the Mesopotamians lived in cities and towns.

3) The Harappans had walls built to protect their houses while the Mesopotamians had walls built to protect their cities and town.

4) The Harppan people were peaceful in comparison to the Mesopotamians.

5) The Harappans traded in cotton, beads, other art and jewellery while the Mesopotamians traded in precious stones.

6)The Hrappans grew melons, lettuce, and general fruits and vegetables that they ate while the Mesopotamians grew flex and used it for oil, net, cloth & food.

7) As far as the technology is concerned, the Harappans established exact measurement and weighing system while the Mesopotamians first created the wheel

Answered by XxMISSqueenxX
0

Answer:

1-Import library

import pygame

from pygame.locals import *

# 2 – Initialize the game

pygame.init()

width, height = 640, 480

screen=pygame.display.set_mode((width,

height))

# 3 – Load images

player = pygame.image.load(“resources/

images/dude.png”)

# 4 – Keep looping through

while 1:

# 5 – Clear the screen before

drawing it again

screen.fill(0)

# 6 – Draw the screen elements

screen.blit(player, (100,100))

# 7 – Update the screen

pygame.display.flip()

# 8 – Loop through the events

for event in pygame.event.get():

# Check if the event is the X

button

if event.type==pygame.QUIT:

# If it is quit the game

pygame.quit()

exit(0)

Similar questions