Skip to content
This repository has been archived by the owner on Aug 9, 2020. It is now read-only.

improved grammar in Introduction to Python #10

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
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
48 changes: 26 additions & 22 deletions tech/2018-06-05-Simple-Introduction-To-Python-Programming.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,19 +7,19 @@ class: post-template
author: bauripalash
---

Python is a programming language that is **Easy to learn** , has **Clear Syntax**. I recommend every newcomer to learn Python first because,
Python is a programming language that is **Easy to learn** and has **Clear Syntax**. I recommend every newcomer to learn Python first because...

- Easy to learn
- Used by Major Tech Giants
- Used in from Simple Desktop to NASA research centre.
- Salary of Python Programmers is very high
- it's easy to learn.
- it's used by Major Tech Giants.
- it's used in a wide range of products, from Simple Desktop to NASA research centres.
- the salary of Python Programmers is very high.

Let's Learn Something without further talking,
Now, without further ado, let's learn something:

## Let's start with Traditional Hello World
## Let's start with traditional Hello World


**Hello World** is a traditional program that every programmer Writes at very first time when learning a new Programming Language, in python it's very simple:
**Hello World** is a traditional program that every programmer writes at first when learning a new programming language. In python it's very simple:

{% highlight python %}

Expand All @@ -28,38 +28,42 @@ print("Hello World")
{% endhighlight %}


In This Current Moment you might be wondering how can you write python programs yourself?
In this current moment you might be wondering how you can write python programs yourself?

Actually There're two ways to do it
Actually there're two ways to do it:

1. **Online, in a online interpreter**
2. **Offline, in your local computer**

### 1. Write and Run Python Programs Online
### 1. Write and run python programs online

There're plenty of ways to write and run Python Programs online , but my recommendation is **repl.it**
There're plenty of ways to write and run Python Programs online, but my recommendation is **repl.it**

Step 1 : goto <https://repl.it/languages/python3>

Step 2 : On the left side write python programs (eg. Hello World program above) , and click "Run >"
Step 2 : You can write your python programs (eg. Hello World program above) on the left side in main.py

Step 3 : Now On The console at right side you'll see output `Hello World`
Step 3: Click "Run >" to compile

You can also Signup there to save your programs for later use.
Step 4 : Now you'll see the output (eg. `Hello World`) on the right side in the console

You can also sign up there to save your programs for later use.

### 2. Write and Run Python Programs On Your Local Computer

Step 1 : Download Python for you Windows or Mac Computer from <https://www.python.org/downloads/>
### 2. Write and run Python programs on your local computer

Step 1 : Download Python for your Windows or Mac computer from <https://www.python.org/downloads/>
(Choose Python Version 3.6 or above)

Step 2 : install and Read The Guide which explains how to install and use Python <https://www.python.org/about/gettingstarted/>
Step 2 : Read the guide which explains how to install and use Python <https://www.python.org/about/gettingstarted/>

Step 3 : Now you can install it and run your first Python program

----

After You Run The **Hello World** Program,
Welcome To The World Of Programming.
After running the **Hello World** program,
welcome to the world of programming.

#### ❤ You're now a Python Programmer 😎
#### ❤ You're now a Python programmer 😎

**Next Part** -> <https://palash.tk/Easy-Calculations-With-Python>
**Next Part** -> <https://palash.tk/Easy-Calculations-With-Python>