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.

- - - - 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/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 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