From 0ed4d3ea032c142e4e070b01b6e2d3b67077ee8d Mon Sep 17 00:00:00 2001 From: admin Date: Fri, 24 Apr 2026 10:24:56 +0530 Subject: [PATCH] Add hello world script (Tanayajadhav1_hello.py) --- scripts/Tanayajadhav1_hello.py | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 scripts/Tanayajadhav1_hello.py diff --git a/scripts/Tanayajadhav1_hello.py b/scripts/Tanayajadhav1_hello.py new file mode 100644 index 0000000..1e141c1 --- /dev/null +++ b/scripts/Tanayajadhav1_hello.py @@ -0,0 +1,12 @@ +import datetime + +def main(): + print("🌍 Hello, World!") + print("🚀 My first open-source contribution") + print("👋 Hi, I'm Tanaya") + + now = datetime.datetime.now() + print("🕒 Current time:", now.strftime("%Y-%m-%d %H:%M:%S")) + +if __name__ == "__main__": + main() \ No newline at end of file