Skip to main content

Lesson #1, Installing Python(For Windows)


Welcome to our first lesson,
First of all we have to install python, so you have to install Pycharm on your computer and python if it is not already installed.

Here are the download links, you can install these from these links.
Download Link:
Python: https://www.python.org/downloads/
Pycharm: https://www.jetbrains.com/pycharm/download/

Here are the steps to download for the windows:

1. Double-click pycharmEDU.exe file to launch the installer. Your computer will
verify the installer:

Now the first page of installation wizard will open:

Click the Next Button.

2. On the Choose Install Location screen, specify the destination directory where
the product will be installed. The installation wizard will suggest a default
location. To choose a custom location, click Browse and select the desired
location in your file system. When ready, click next.


3. On the Installation Options screen, specify the following options:
o Create Desktop shortcut: if you select this check box, the shortcut to
PyCharm Edu will appear on your Desktop. Thus you will be able to
launch PyCharm Edu from your Desktop, by double-clicking this shortcut
icon. If you leave this check-box unselected (this is what the installer
suggests), then the shortcut on the Desktop will not be created, and you
will have to launch the application from the Start menu or from your file
system only.

  •  If you are working on Windows XP, you can opt to select the checkbox
  • Create Quick Launch shortcut.
  •  Choose Python version: in this section, you have to specify which Python
  • version will be installed for PyCharm Edu. The installer suggests you to
  • choose between Python 2.7 and Python 3.4. If you are not sure which
  • version suites you better, refer to the comparison of versions.

 If you want all files with the py extension to be opened by PyCharm,
select the .py check-box in the section Create associations.

Click Next.


4. On this page of the installation wizard, you have to specify in which folder of
the Start menu the application shortcuts will appear. If you do not enter the
folder name, then your Start menu will contain the folder Jet Brains.
Click Install.
See how the Python interpreter you’ve selected is installed:


5. When installing Python is ready, you will see the last page of the wizard:
Select the check box Run PyCharm Edu (if you want to launch the product
immediately), and click Finish.

Comments

Popular posts from this blog

Features of python

  Python   is a dynamic, high-level, free open source, and interpreted programming language. It supports object-oriented programming as well as procedural-oriented programming. In Python, we don’t need to declare the type of variable because it is a dynamically typed language. For example, x = 10 Here, x can be anything such as String, int, etc. Features in Python There are many features in Python, some of which are discussed below – 1. Easy to code: Python is a high-level programming language. Python is very easy to learn language as compared to other languages like C, C#, Javascript, Java, etc. It is very easy to code in the python language and anybody can learn python basics in a few hours or days. It is also a developer-friendly language. 2. Free and Open Source: Python language is freely available on the official website and you can download it from the given download link below click on the  Download Python  keyword. Download Python Since it is open-source, thi...

Using input command in python

Today i will show you that how can you use input command in python language, so we will write a simple program that will ask for any name or value and then print that name or value. So here is our simple program. a= input ( "Enter your name" ) print (a) as you can see we have declared "a" a variable that will ask for input "Enter your name" and then print command will print the variable "a". So anything we will type will be printed. As show in the picture below. But here you have to remember, if you are working with integers for some mathematical work than you have to declare input type as integer because then python will take input type as integer and not as word. As show in the picture below. As you can see the syntax that how can we declaring the input type,,int, we have to write int then in brackets we have to enter the input command, int stands for integer and it will declare our input as integer, we have and in print command we have instruc...

Why Learn Python?

Python is an easy-to-learn programming language that has some really useful features for a beginning programmer. The code is quite easy to read when compared to other programming languages, and it has an interactive shell into which you can enter your programs and see them run.  In addition to its simple language structure and an interactive shell with which to experiment, Python has some features that greatly augment the learning process and allow you to put together simple animations for creating your own games. One is the turtle module, inspired by Turtle graphics (used by the Logo programming language back in the 1960s) and designed for educational use. Another is the tkinter module, an interface for the Tk GUI toolkit, which provides a simple way to create programs with slightly more advanced graphics and animation.