Quick actions

cmd+k|ctrl+k

Navigation

Languages

Writing the letter by using Adding White space to

Snippet info

Language

Python

Visibility

public

Author

ericmash53

Created

2025-12-13T17:47:13.175883Z

Updated

2025-12-29T21:20:02.200931Z

# WRITTING THE LETTER TO THE SCHOOL ADMISSION
letter = ("\t\t\t\t\t\tErick Mashaka,\n"
         "\t\t\t\t\t\tp.o.box 1234,\n"
         "\t\t\t\t\t\tDar-es-salaam,Tanzania,\n"
         "\t\t\t\t\t\t12 December 2025,\n"        # to sender
         "The Director \n"
         "Bright Future Secondary School\n"
         "P.O.Box 567\n"
         "Dar-es-salaam,Tanzania.\n"             # to receiver
         
         "Dear Sir/Madam,\n"
         
         "\t\tRE: APPLICATION FOR SCHOOL ADMISSION\n" # heading of the title
         
         "\n"  # SPACE FO PARAGRAPH (1)
         "i am writing to apply for admission to your school for the academic\n"
         "year 2026. i recently completed my primary education and i am eager to\n"
         "continue my studies in a well-disciplined and academic-focused instit"
         "ution.\n"
         
         "\n" # ANOTHER SPACE FOR PARAGRAPH (2)
         
         "I have always admired the high standards of education at Bright Future\n"
         "secondary school. i am hardworking, disciplined and ready to follow\n"
         "all school rules and regulations."
         
         "\n" # SPACE FOR PARAGRAPH (3)
         "\n" # SPACE FOR PARAGRAPH (4)
         "I kindly request you to consider my application. i shall be very grat\n"
         "eful if my request is accepted."
         
                  "\n" # SPACE FOR PARAGRAPH (4)
          "\n" # SPACE FOR PARAGRAPH (4)
         "\t\tyours faithfully\n"
         "\t\tERICK MASHAKA NGUNYALE\n")
         
         
         
         

print(letter)
INFO