Posts

Python Download

Image
 Python is the highest tech, Easy to learn, and Advanced programming language. If you are completely new to Python go to this link ' Getting started with Python ' to know more about this amazing programming  language.   ► Download Python First, You have to  download  and install Python on your PC. Python can be easily downloaded in Windows, Mac, and Linux. I am downloading in Windows, Try to download the latest version of Python. ► Installing Python We will now Install python in our Operating System, I have Windows 10 therefore I am installing python in windows. Steps to Install Python are: 1.       2.     3. PIC: tutorialgateway.org [Check this box of Add Python 'version' to the path and click install now] 4. 5.  6. [In Command Prompt type: python --version and you will get the version of python you have installed] [Type python and you will get something like this: Python 3.9.6 (tags/v3.9.6:db3ff76, Jun 28 2021, 15:2...

Python Projects (GUI)

👉 You can download the full source code of all my Python GUI projects directly from my GitHub: sonalpriyanshi529/GUI-Projects 1. PYTHON SIGN IN CODE  from tkinter import * from tkinter import ttk win=Tk() #windows size win.geometry( '240x200' ) win.resizable( 0 , 0 ) #creating label Name_Label=Label( text = 'Name' ) Name_Label.grid( column = 0 , row = 0 , sticky =W) Age_Label=Label( text = 'Age' ) Age_Label.grid( column = 0 , row = 2 , sticky =W) Email_Label=Label( text = 'Email' ) Email_Label.grid( column = 0 , row = 3 , sticky =W) Language_label=Label( text = 'Choose your Language' ) Language_label.grid( column = 0 , row = 4 , sticky =W) Genger_Label=Label( text = 'Who are you ?' ) Genger_Label.grid( column = 0 , row = 5 , sticky =W) #entry box and a storing variable class( StringVar() ) to store all the entries. Name_entry=StringVar() first=Entry( width = 16 , textvariable =Name_entry) first.grid( column = 1 , row = 0 ) first.focus() ...

Python Projects (Advance)

1. Timer import time num= int ( input ( 'Enter Seconds ' )) dog= 1 while num> 1 : time.sleep( 1 ) print (dog, 'seconds' ) dog=dog+ 1 num=num- 1 time.sleep( 1 ) print (dog, 'seconds , Time up!' )