Files
30-seconds-of-code/snippets/to-hex.md
Angelos Chalaris f6a215e9e3 Kebab file names
2023-04-27 22:00:06 +03:00

22 lines
373 B
Markdown

---
title: Number to hex
tags: math
cover: green-plant
firstSeen: 2020-10-09T09:45:47+03:00
lastUpdated: 2020-10-09T09:45:47+03:00
---
Returns the hexadecimal representation of the given number.
- Use `hex()` to convert a given decimal number into its hexadecimal equivalent.
```py
def to_hex(dec):
return hex(dec)
```
```py
to_hex(41) # 0x29
to_hex(332) # 0x14c
```