Convierte un número de entrada expresado en cierta base al mismo expresado en otra base. Contiene implementaciones explícitas e implementaciones nativas de python.
Aplicación en progreso. GUI en Qt en progreso.
https://www.udemy.com/course/design-patterns-python
https://www.udemy.com/course/programming-effectively-in-python/
https://www.udemy.com/course/writing-clean-code/
https://www.udemy.com/course/python-3-deep-dive-part-1
https://www.udemy.com/course/python-3-deep-dive-part-2
https://www.udemy.com/course/python-3-deep-dive-part-3
https://www.udemy.com/course/python-3-deep-dive-part-4
https://www.udemy.com/course/python-rest-apis-with-flask-docker-mongodb-and-aws-devops
https://www.udemy.com/course/desktop-gui-python-tkinter/
https://www.udemy.com/course/automated-software-testing-with-python/
5 Tips To Organize Python Code
https://www.youtube.com/watch?v=e9yMYdnSlUA
How To Design Large Software Systems
https://www.youtube.com/watch?v=u3YoNpSnmis
Data Collection Project Ideas & Demos
https://www.youtube.com/watch?v=Wx-gL-Dt5rI
How to Convert any Python File to .EXE
https://www.youtube.com/watch?v=CvcSpNm7PzU
¿Cómo PASAR de .PY a .EXE? (Crear EJECUTABLE con Python)
https://www.youtube.com/watch?v=CvcSpNm7PzU
Convert Python To Exe Files
https://www.youtube.com/watch?v=bYLU02QhlUM
Convert binary, octal, decimal, and hexadecimal in Python
https://note.nkmk.me/en/python-bin-oct-hex-int-format/
Python Program to Convert Decimal to Binary, Octal and Hexadecimal
https://www.datacamp.com/tutorial/python-data-type-conversion
Convert a string of binary, octal, and hexadecimal notation to int
https://note.nkmk.me/en/python-str-num-conversion/
Python 3.8.10 (default, Jun 22 2022, 20:18:18)
[GCC 9.4.0] on linux
Type "help", "copyright", "credits" or "license()" for more information.
>>> i = 255
>>> print(bin(i))
0b11111111
>>> print(oct(i))
0o377
>>> print(hex(i))
0xff
>>> i=16
>>> print(hex(i))
0x10
>>> print(bin(i)[2:])
10000
>>> format(i, 'b')
'10000'
>>> i
16
>>> format(i, 'd')
'16'
>>> int(format(i, 'd'))
16