This video is about String Formatting problem from HackerRank.
Problem Statement:
Given an integer, n , print the following values for each integer i from 1 to n:
Decimal
Octal
Hexadecimal (capitalized)
Binary
#HackerRank #String #Python
Problem:
https://www.hackerrank.com/challenges...
Sample code:
def print_formatted(number):
w=len(str(bin(number))[2:])
for i in range(1,number+1):
print(str(i).rjust(w,' '),oct(i)[2:].rjust(w,' '),hex(i)[2:].upper().rjust(w,' '),bin(i)[2:].rjust(w,' '))
For 1 : 1 Tutoring
WhatsApp contact : 7278222619
mail: [email protected]
You can support via UPI : sattujaiswal@okhdfcbank
Follow me on:
whatsapp:
https://chat.whatsapp.com/LNwHGukUizj...
Facebook:
/ sat567
Linkedin:
/ satyendra-jaiswal-903588a2
Instagram:
/ jaiswal_satyendra
Смотрите видео String Formatting [HackerRank] | Python | rjust() | oct() | hex() | bin() онлайн без регистрации, длительностью часов минут секунд в хорошем качестве. Это видео добавил пользователь Coding Cart 09 Март 2020, не забудьте поделиться им ссылкой с друзьями и знакомыми, на нашем сайте его посмотрели 16,430 раз и оно понравилось 295 людям.