Skip to content
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 8 additions & 8 deletions pyfock/Utils/print_scientist.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@


def get_stylish_name(name):
"""
r"""
Return ASCII art banner for a scientist's name.

Provides pre-generated ASCII art banners for supported scientist names.
Expand Down Expand Up @@ -55,11 +55,11 @@ def get_stylish_name(name):
Supported scientists: dalton, bohr, rutherford, dirac, schrodinger
"""
banners = {
"dalton": " ____ _ _ \n| _ \ __ _| | |_ ___ _ __ \n| | | |/ _` | | __/ _ \| '_ \ \n| |_| | (_| | | || (_) | | | |\n|____/ \__,_|_|\__\___/|_| |_|",
"bohr": " ____ _ \n| __ ) ___| |__ _ __ \n| _ \ / _ \ '_ \| '__|\n| |_) | (_) | | | | | \n|____/ \___/|_| |_|_| ",
"rutherford": " ____ _ _ __ _ \n| _ \ _ _| |_| |__ ___ _ __ / _| ___ _ __ __| |\n| |_) | | | | __| '_ \ / _ \ '__| |_ / _ \| '__/ _` |\n| _ <| |_| | |_| | | | __/ | | _| (_) | | | (_| |\n|_| \_\\\\__,_|\__|_| |_|\___|_| |_| \___/|_| \__,_|",
"dirac": " ____ _ \n| _ \(_)_ __ __ _ ___ \n| | | | | '__/ _` |/ __| \n| |_| | | | | (_| | (__ \n|____/|_|_| \__,_|\___| ",
"schrodinger": " ____ _ _ _ \n / ___| ___| |__ _ __ ___ __| (_)_ __ __ _ ___ _ __ \n \___ \ / __| '_ \| '__/ _ \ / _` | | '_ \ / _` |/ _ \ '__|\n ___) | (__| | | | | | (_) | (_| | | | | | (_| | __/ | \n |____/ \___|_| |_|_| \___/ \__,_|_|_| |_|\__, |\___|_| \n |___/ ",
"dalton": " ____ _ _ \n| _ \\ __ _| | |_ ___ _ __ \n| | | |/ _` | | __/ _ \\| '_ \\ \n| |_| | (_| | | || (_) | | | |\n|____/ \\__,_|_|\\__\\___/|_| |_|",
"bohr": " ____ _ \n| __ ) ___| |__ _ __ \n| _ \\ / _ \\ '_ \\| '__|\n| |_) | (_) | | | | | \n|____/ \\___/|_| |_|_| ",
"rutherford": " ____ _ _ __ _ \n| _ \\ _ _| |_| |__ ___ _ __ / _| ___ _ __ __| |\n| |_) | | | | __| '_ \\ / _ \\ '__| |_ / _ \\| '__/ _` |\n| _ <| |_| | |_| | | | __/ | | _| (_) | | | (_| |\n|_| \\_\\\\__,_|\\__|_| |_|\\___|_| |_| \\___/|_| \\__,_|",
"dirac": " ____ _ \n| _ \\(_)_ __ __ _ ___ \n| | | | | '__/ _` |/ __| \n| |_| | | | | (_| | (__ \n|____/|_|_| \\__,_|\\___| ",
"schrodinger": " ____ _ _ _ \n / ___| ___| |__ _ __ ___ __| (_)_ __ __ _ ___ _ __ \n \\___ \\ / __| '_ \\| '__/ _ \\ / _` | | '_ \\ / _` |/ _ \\ '__|\n ___) | (__| | | | | | (_) | (_| | | | | | (_| | __/ | \n |____/ \\___|_| |_|_| \\___/ \\__,_|_|_| |_|\\__, |\\___|_| \n |___/ ",
}
return banners.get(name, name.upper())

Expand Down Expand Up @@ -116,7 +116,7 @@ def print_aesthetic_quote(quote, author):


def display_scientist_profile(name):
"""
r"""
Display complete scientist profile with banner, portrait, and quote.

Orchestrates the display of a scientist's profile by:
Expand Down Expand Up @@ -453,4 +453,4 @@ def print_scientist():

''',

}
}