From 1d92d0c66c0065a53754de3b213198c8ebc612b3 Mon Sep 17 00:00:00 2001 From: Harshad Chavan Date: Sat, 10 May 2025 21:54:14 +0530 Subject: [PATCH 1/3] Update README.md --- README.md | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index f367a9e..9c9d69c 100644 --- a/README.md +++ b/README.md @@ -1 +1,5 @@ -# myfirstp \ No newline at end of file +# Getting Started +Beginning my coding journey via GitHub. +By Creating new Repository +through Pull and push request +and commit the changes From 5874dd6a44191d674ae6024b8b9bd09ce0da88a3 Mon Sep 17 00:00:00 2001 From: Harshad Chavan Date: Tue, 13 May 2025 18:23:43 +0530 Subject: [PATCH 2/3] Delete !DOCTYPE.html --- !DOCTYPE.html | 13 ------------- 1 file changed, 13 deletions(-) delete mode 100644 !DOCTYPE.html diff --git a/!DOCTYPE.html b/!DOCTYPE.html deleted file mode 100644 index 3d58134..0000000 --- a/!DOCTYPE.html +++ /dev/null @@ -1,13 +0,0 @@ - - - -Page Title - - - -

This is a Heading

-

This is a paragraph.

- - - - From 96004ea689bbbc236c5cae3103f64e61b8a67506 Mon Sep 17 00:00:00 2001 From: Harshad Chavan Date: Tue, 13 May 2025 18:28:51 +0530 Subject: [PATCH 3/3] Add files via upload --- HelloWorld.py | 1 + InstallingPython.txt | 5 +++++ Intro.txt | 10 ++++++++++ PythonOverview.txt | 8 ++++++++ WritingPythonCodes.txt | 12 ++++++++++++ eg.py | 7 +++++++ 6 files changed, 43 insertions(+) create mode 100644 HelloWorld.py create mode 100644 InstallingPython.txt create mode 100644 Intro.txt create mode 100644 PythonOverview.txt create mode 100644 WritingPythonCodes.txt create mode 100644 eg.py diff --git a/HelloWorld.py b/HelloWorld.py new file mode 100644 index 0000000..6d95fe9 --- /dev/null +++ b/HelloWorld.py @@ -0,0 +1 @@ +print("Hello world") \ No newline at end of file diff --git a/InstallingPython.txt b/InstallingPython.txt new file mode 100644 index 0000000..81e9f0f --- /dev/null +++ b/InstallingPython.txt @@ -0,0 +1,5 @@ + To install Python go to https://www.python.org/downloads/ then download the latest version. + make sure that check " add Python 3.8 to path " for easier installation. + + #Python Interpreter (Compiler) + A Python interpreter is a program that executes Python codes. \ No newline at end of file diff --git a/Intro.txt b/Intro.txt new file mode 100644 index 0000000..4b1e06a --- /dev/null +++ b/Intro.txt @@ -0,0 +1,10 @@ +# What is Python? + Ans: Python is the one of the most popular programming language created by Guido van Rossum and its was first implemented in 1989. +#What is Python used for ? + Ans: 1)Web Devlopment + 2)Machine Learning + 3)Data Science + 4)Scripting + And Many more... + #What is the latest version of Python / + Ans : Python 3 is the latest version of Python. diff --git a/PythonOverview.txt b/PythonOverview.txt new file mode 100644 index 0000000..e9e96c0 --- /dev/null +++ b/PythonOverview.txt @@ -0,0 +1,8 @@ + Understanding of the Python programming language from basics to advanced. + + Python Prerequisites : + 1)Computer basics. + 2)knowledge of installing a software . + 3)A Compiler + + \ No newline at end of file diff --git a/WritingPythonCodes.txt b/WritingPythonCodes.txt new file mode 100644 index 0000000..ac9c0a9 --- /dev/null +++ b/WritingPythonCodes.txt @@ -0,0 +1,12 @@ + Writing Python codes +in order to learn Python , you need to able to write and excutes codes. + + + # Python Console (Shell) + Python Console also known as shell,allows to execute Python code lin by line. + accsess THE Python console by opening the command. + To Start using the console type the following and hit enter + name = "abc" + Again , type the following and hit enter + print(name) + After that should see this abc \ No newline at end of file diff --git a/eg.py b/eg.py new file mode 100644 index 0000000..17db2c2 --- /dev/null +++ b/eg.py @@ -0,0 +1,7 @@ + +#""" Take a look at this example """ + +x=4 +y=3 +sum=x+y +print(sum) \ No newline at end of file