My Online Diary

Welcome to my personal blog! Here, I share my thoughts, experiences, and snippets of code.

DIARY / Feb / 17

post

A beautiful landscape

post

17

post

Code Snippet: Simple Python Function


# This is a simple Python function
def greet(name):
    print(f"Hello, {name}!")

greet("World")