Posts

Showing posts from May, 2021

Internet Speed test program using python

Image
First ,you need to import the module  pip install speedtest-cli Python Code : from speedtest import Speedtest st=Speedtest() print("Your Connection's Download speed is  : ",st.download()) print("Your Connection's Upload speed is  : ",st.upload()) OUTPUT :

Best sites to learn python

Best sites to learn python 1. copyassignment.com 2. w3schools.com 3. tutorialspoint.com 4. javatpoint.com 5. freecodecamp.org

Top 5 IDE for python

 Top 5 IDE for Python  1.ATOM            Atom is free,sleek and is very customizable. It is developed by Github. 2.PYCHARM              Supports web development and plug-ins and the user interface is also nice and can be easily connected to databases. 3.JUYPTER NOTEBOOK               Interactive web tool is known as a computational notebook, which researches can use to combine software code in a single document. 4.VS CODE             Visual Studio Code is a code editor redefined and optimized for building and debugging modern web and cloud applications. 5.SUBLIME             A super simple and lightweight IDE for basic coding and has many plugins.

Python Roadmap For Beginners

Important Topics 1.Learn Syntax and Basics The Python Shell,basic arithmetic Control Structures Accepting user input,Strings & Typecasting Looping in python : For & While loops Exception Handling Functions,modules & Imports 2.OOPs Concepts and Built-in Data Structures Object Oriented Programming Lists & List Functions Regular Expressions List Comprehension List Slicing String Formatting Lambdas List,Dictionaries & Tuples Frameworks for Web Development : 1.Django 2.Flask Frameworks for Machine Learning : 1.TensorFlow 2.Pytorch 3.Scikit-learn Frameworks for Data Analysis : 1.NumPy 2.pandas Frameworks for Desktop Applications : 1.Tkinter 2.PyQT 3.Kivy 4.WxPython 5.PyGUI Some Project Ideas :  1.E-commerce Site 2.News Portal 3.Weather Application 4.Unit Converter 5.Email Chatbot 6.Currency Converter 7.URL Shortner 8.Quiz Application 9.MP3 Player 10.Student Management System Thank Youđź‘Ť  

How To Get The System Information Using Python

 Python Snippet : import platform my_sys=platform.uname() print( f"System : {my_sys.system} " ) print( f"Node Name : {my_sys.node} " ) print( f"Release : {my_sys.release} " ) print( f"Version : {my_sys.version} " ) print( f"Machine : {my_sys.machine} " ) print( f"Processor : {my_sys.processor} " )

Top 5 books to learn python

1.AUTOMATING BORING STUFF WITH PYTHON 2.FLUENT PYTHON : CLEAR,CONCISE, AND PROGRAMMING, BY LUCIANO RAMALHO 3.LEARN PYTHON 3 THE HARD WAY , BY ZED A.SHAW 4.PYTHON CRASH COURSE 5.LEARNING PYTHON ,5TH EDITION                                          Thank Youđź‘Ť

Django Projects

 Hello friends  I did some projects by using python and django framework,that are uploaded here.   Click here to download. .