1
2
3
4
5
6
7
8
9
10
🐍 Python 3.10.9 (3/24/2025, 5:14:49 AM)
>>> from world import Sundar
>>> sundar = Sundar()
>>> print(sundar.about_me())
>>> Running...
>>> Page 1: Title 1
>>> Page 2: Title 2
>>> Page 3: Title 3
>>>
#!/usr/bin/env learner # never stop learning

"""
Hello World!.
I am backend engineer with 13+ years in software development.
@Life moto: I Can is greater than IQ
@Principles to live by: Learner, Focused, Self Driven, Empowering, Integrity, Accountability.
@Vision: To be best-in-class programmer.
"""

class Sundar:
"""
# A brief description of Sundar
"""
def about_me(self):
"""Prints all docstring statements in a rich editor style."""
print("[bold cyan]Hello World![/bold cyan]")
print("[green]I am a backend engineer with 13+ years in software development.[/green]")
print("[yellow]@Life moto: I Can is greater than IQ[/yellow]")
print("[magenta]@Principles to live by: Learner, Focused, Self Driven, Empowering, Integrity, Accountability.[/magenta]")
print("[blue]@Vision: To be best-in-class programmer.[/blue]")

def daily_learnings(self):
"""📅 Daily Learnings"""
print("Latest Pages:")
print(f"Page 1: <a href='/page-1'>Title 1</a>")
print(f"Page 2: <a href='/page-2'>Title 2</a>")
print(f"Page 3: <a href='/page-3'>Title 3</a>")