String Formatting [HackerRank] | Python | rjust() | oct() | hex() | bin()

Published: 09 March 2020
on channel: Coding Cart
16,430
295

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  


Watch video String Formatting [HackerRank] | Python | rjust() | oct() | hex() | bin() online, duration hours minute second in high quality that is uploaded to the channel Coding Cart 09 March 2020. Share the link to the video on social media so that your subscribers and friends will also watch this video. This video clip has been viewed 16,430 times and liked it 295 visitors.