{%hackmd BJ-DJz7nt %}
# Bare Bears S4C7: Review & Python Gaming
###### tags: `Programming` `Python` `CWL` `CS`

[TOC]
## Wisdom of the day

- What's the behind meaning of "Difficulty is just a thought"?
- What's the definition of "using the right way"?
## Homework Review
### OMAK

Write 10 of your good deeds, and 5 of our improvements in this year so far.
### Brainstorming

One day, your mom is asking you to attend a family reunion but you also receive an invitation from your friend to a party you really want to go to. How will you solve this dilemma?
### Python
- [Reverse the sequence](https://snakify.org/en/lessons/functions/problems/reverse_rec/)
## Homework
### OMAK

Share a picture of you and your mom. Also, write down 7 of your mom's good deeds ^^
### Python
```python=
def tri_recursion(k):
if(k>0):
result = k+tri_recursion(k-1)
print(result)
else:
result = 0
return result
print("\n\nRecursion Example Results")
tri_recursion(6)
```
> what is tri_recursion(6)?
- [Reverse the sequence](https://snakify.org/en/lessons/functions/problems/reverse_rec/)