From 5308d97fd576384d3a93e927f256d76d5cd9309e Mon Sep 17 00:00:00 2001 From: Joe <127773439+joegeorge022@users.noreply.github.com> Date: Mon, 28 Oct 2024 20:13:44 +0530 Subject: [PATCH] Create readme.md --- Day 0 /readme.md | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 Day 0 /readme.md diff --git a/Day 0 /readme.md b/Day 0 /readme.md new file mode 100644 index 0000000..d4e2702 --- /dev/null +++ b/Day 0 /readme.md @@ -0,0 +1,10 @@ +# Day 0: Print Function #1 +## Use the print function and write a code. + + +The print() function prints the specified message to the screen, or other standard output device. +The message can be a string, or any other object, the object will be converted into a string before written to the screen. + +example: +print("I love Python") +gives the Output: I love Python