mirror of
https://github.com/drasko/codezero.git
synced 2026-01-11 18:33:16 +01:00
11 lines
184 B
Python
11 lines
184 B
Python
#! /usr/bin/env python2.6
|
|
# -*- mode: python; coding: utf-8; -*-
|
|
#
|
|
|
|
def conv_hex(val):
|
|
hexval = hex(val)
|
|
if hexval[-1:] == 'L':
|
|
hexval = hexval[:-1]
|
|
return hexval
|
|
|