Nest all content into snippets

This commit is contained in:
Angelos Chalaris
2023-05-07 16:07:29 +03:00
parent 2ecadbada9
commit 6a45d2ec07
1240 changed files with 0 additions and 0 deletions

View File

@ -0,0 +1,22 @@
---
title: RGB to hex
type: snippet
language: python
tags: [string,math]
cover: campfire
dateModified: 2020-11-02T19:28:27+02:00
---
Converts the values of RGB components to a hexadecimal color code.
- Create a placeholder for a zero-padded hexadecimal value using `'{:02X}'` and copy it three times.
- Use `str.format()` on the resulting string to replace the placeholders with the given values.
```py
def rgb_to_hex(r, g, b):
return ('{:02X}' * 3).format(r, g, b)
```
```py
rgb_to_hex(255, 165, 1) # 'FFA501'
```