Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions docs/tutorial/exception-python.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,15 @@ Ketika skrip Python menimbulkan Exception, ia harus menangani Exception begitu s

---

```
Contoh Penggunaan:
try:
angka = 10
print("Angka nya adalah" + angka)
except TypeError as error:
...
```

> [Edit tutorial ini](https://github.com/belajarpythoncom/belajarpython.com/blob/master/docs/tutorial/exception-python.md)

<div class="mt-8 inline justify-between gap-x-4 md:flex">
Expand Down