Python Programming Tutorial 10 String Methods
YOUR LINK HERE:
http://youtube.com/watch?v=Am94G5My8HQ
This video is about Text Alignment problem from HackerRank. • Generating the HackerRank Logo with help of ljust(), just() and centre() function from string in Python • Problem:https://www.hackerrank.com/challenges... • #HackerRank#Python#ljust#rjust#center • Sample Code: • https://www.coderscart.com/text-align... • #Replace all ______ with rjust, ljust or center. • thickness = int(input()) #This must be an odd number • c = 'H' • #Top Cone • for i in range(thickness): • print((c*i).rjust(thickness-1)+c+(c*i).ljust(thickness-1)) • #Top Pillars • for i in range(thickness+1): • print((c*thickness).center(thickness*2)+(c*thickness).center(thickness*6)) • #Middle Belt • for i in range((thickness+1)//2): • print((c*thickness*5).center(thickness*6)) • #Bottom Pillars • for i in range(thickness+1): • print((c*thickness).center(thickness*2)+(c*thickness).center(thickness*6)) • #Bottom Cone • for i in range(thickness): • print(((c*(thickness-i-1)).rjust(thickness)+c+(c*(thickness-i-1)).ljust(thickness)).rjust(thickness*6)) • 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
#############################
