Skip to main content

Introduction to Python programming

Hello dear viewers,

               It is with utmost pleasure I would like to write about the Python programming languages and introduce you to it.

               So before we begin, I would like you to know what you can actually do and also, why is Python programming very important. So with Python, you can:

  •  Develop Desktop application           
  • Develop Database Applications       
  • Develop Web applications
  • Perform Network Scripting
  • Do ethical hacking
  • Perform Server side and Client side scripting     
  • Integrate with other programming languages like C and java

And what not!

So now that we know ‘What’ we can do with the Python Programming language, let’s focus on ‘How?’

It’s very simple. To begin with, you need to download and install the Python IDLE form its official website or also use any other existing IDE for Python.

For windows the link is: https://www.python.org/downloads/ and install. The installation is very simple.

For Linux based systems it is usually inbuilt.

So let us learn all the above mentioned topics one by one and also do projects on them. So if you are ready to learn, then sky is your limit. I’m sure you won’t regret learning this amazing programming language. I shall update you more in my next post.



Thank you very much!

Comments

Popular posts from this blog

Kotlin :A New Beginning

Hello guys, You might have heard about a new language supported for the android Officially by Google,Named as Kotlin. Kotlin is a statically typed Programming language.By statically typed language i mean that the type checking is done during complile time. It was developed in July 2011 by Jetbrains in Russia,In 2017 Google declared Kotlin as the official langauge for android. However the Traditional Java developers are sticking to java. New programmers who want to make android apps,Web apps can use Kotlin as a language of preference. With this Post i welcome you to the world of Kotlin. There is no good book for kotlin but there is the official documentation on Kotlin.I refer the official Kotlin documentation. The main aim of this post if to Introduce you Kotlin and its Uses and also how to write programs in Kotlin. The official documentation can be found on the website   KOTLIN I belive that this post will help you to write codes in Kotlin. So lets begin Fir...

Web programming part 2

Hello guys, I am back with another post on web programming. In the last post you guys had learnt how to create a simple HTML document. As i told you there are many tags that you might have to remember. In this Post i will be creating a small Login form using only HTML. By using only HTML i mean No styling will be given to the document. The purpose of this code is to demonstrate you tags like <form> and <label> you will also learn how to make a button in HTML. The code goes like this: < form  action ="/action_page.php" >      < label > < b > Username < /b > < /label >      < input  type ="text"  placeholder ="Enter Username" >      < label > < b > Password < /b > < /label >      < input  type ="password"  placeholder ="Enter Password" >      < button  type ="submit" ...

Using Java and Python simultaneously

Hi friends,                                                                                                                                    Firstly, I would like to thank you all for your love and support towards our blog.                   We here are happy to know that our previous posts on tutorials and mini projects have helped you a great deal.         So far many of you might have done some really amazing projects using a particular programming language. But in this post of mine, I would like to share with you my mini project for which I have collaborated two of the most am...