Skip to content
Open
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
12 changes: 12 additions & 0 deletions scripts/Tanayajadhav1_hello.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
import datetime

def main():
print("🌍 Hello, World!")
Comment on lines +1 to +4
Copy link

Copilot AI Apr 24, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The repository README documents a naming convention for hello-world scripts in scripts/ (e.g., hello_world_<username>.<ext> or <username>.<ext>). Tanayajadhav1_hello.py doesn’t match either pattern, which makes the directory harder to scan/search consistently. Consider renaming the file to follow the documented convention (and update the PR accordingly).

Copilot uses AI. Check for mistakes.
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()
Loading