Files
30-seconds-of-code/snippets/to_hex.md
Isabelle Viktoria Maciohsek 19f636408c Make expertise a field
2022-03-01 20:27:27 +02:00

22 lines
374 B
Markdown

---
title: Number to hex
tags: math
expertise: beginner
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
```