Conversion from base10 to base20

Please help me with this question, I have been stuck for a while in it

Hello, @heyimaria1811, and welcome to the Codecademy Forums!

The following features of Python may be useful for this project:

  • The modulus (remainder) operator: %
  • The integer division operator: //
  • The integer division augmented assignment operator: //=
  • Loops (for and while)
  • Functions
  • String concatenation
  • The chr built-in function

With which of the above Python features are you familiar?

Edited on November 15, 2019 to add the chr built-in function to the list