Skip to content

Instantly share code, notes, and snippets.

@KaushikShresth07
Created February 7, 2026 19:52
Show Gist options
  • Select an option

  • Save KaushikShresth07/99e8c898c449d7b884dce9ed88d3becb to your computer and use it in GitHub Desktop.

Select an option

Save KaushikShresth07/99e8c898c449d7b884dce9ed88d3becb to your computer and use it in GitHub Desktop.
def print_title():
"""Print the J.A.R.V.I.S ASCII art title."""
title = """
╔══════════════════════════════════════════════════════════╗
║ ║
║ ██╗ █████╗ ██████╗ ██╗ ██╗██╗███████╗ ║
║ ██║██╔══██╗██╔══██╗██║ ██║██║██╔════╝ ║
║ ██║███████║██████╔╝██║ ██║██║███████╗ ║
║ ██ ██║██╔══██║██╔══██╗╚██╗ ██╔╝██║╚════██║ ║
║ ╚█████╔╝██║ ██║██║ ██║ ╚████╔╝ ██║███████║ ║
║ ╚════╝ ╚═╝ ╚═╝╚═╝ ╚═╝ ╚═══╝ ╚═╝╚══════╝ ║
║ ║
║ Just A Rather Very Intelligent System ║
║ ║
╚══════════════════════════════════════════════════════════╝
"""
print(title)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment