diff --git a/Python-Function-Hex.md b/Python-Function-Hex.md new file mode 100644 index 000000000..45226d7e2 --- /dev/null +++ b/Python-Function-Hex.md @@ -0,0 +1,23 @@ +# Python hex(x) + +`hex(x)` is a built-in function in Python 3 to convert an integer number to a lowercase [hexadecimal](https://www.mathsisfun.com/hexadecimals.html) string prefixed with “0x”. + +## Argument + +This function takes one argument `x` that should be of integer type. + +## Return + +This function returns a lowercase hexadecimal string prefixed with "0x". + +## Example + +```python +print hex(16) # prints 0x10 +print hex(-298) # prints -0x12a +print hex(543) # prints 0x21f +``` + +:rocket: [Run Code](https://repl.it/CVCR) + +[Official Documentation](https://docs.python.org/3/library/functions.html#hex)