- Decimal
- Octal
- Hexadecimal (capitalized)
- Binary
- Complete the print_formatted function in the editor below.
- print_formatted has the following parameters:
- int number: the maximum value to print
>>> width = 20
>>> print 'HackerRank'.ljust(width,'-')
HackerRank----------
>>> print 'ab123'.isalnum()
True
>>> print 'ab123#'.isalnum()
False
In this post, we will look at how we can deploy our Django app using the Microsoft Azure app service - a free plan. You need an Azure accoun...