---
type: archive
area: archive
status: archived
date: 2026-05-03
created: 2026-05-03
updated: 1980-01-01
tags:
  - archive
---
## pass
this keyword used in a function or a class that is not yet implemented so we this keyword tell the compiler to pass it.
# ex:
def example_function()
	pass
# self 
keyword that define the actual object

To change a variable global scope in a function we use keyword "global"
"
enemy = 1
def increase()
	global enemy =2
"