python-dev (58)in #python-dev • 5 years agoPython Program to Display the multiplication Table# Multiplication table (from 1 to 10) in Pythonpython-dev (58)in #python-dev • 5 years agoPython Program to Find the Factorial of a Number# Python program to find the factorial of a number provided by the user.python-dev (58)in #python-dev • 5 years agoPython Program to Check Prime Number# Program to check if a number is prime or notpython-dev (58)in #python-dev • 5 years agoPython Program to Find the Largest Among Three Numbers# Python program to find the largest number among the three input numberspython-dev (58)in #python-dev • 5 years agoPython Program to Check Leap Year# Python program to check if year is a leap year or notpython-dev (58)in #python-dev • 5 years agoPython Program to Check if a Number is Odd or Even# Python program to check if the input number is odd or even.python-dev (58)in #python-dev • 5 years agoPython Program to Check if a Number is Positive, Negative or 0num = float(input("Enter a number: "))python-dev (58)in #python-dev • 5 years agoPython Program to Convert Celsius To Fahrenheit# Python Program to convert temperature in celsius to fahrenheitpython-dev (58)in #python-dev • 5 years agoPython Program to Convert Kilometers to Miles# Taking kilometers input from the userpython-dev (58)in #python-dev • 5 years agoPython Program to Swap Two Variables# Python program to swap two variablespython-dev (58)in #python-dev • 5 years agoPython Program to Solve Quadratic Equation# Solve the quadratic equation ax**2 + bx + c = 0python-dev (58)in #python-dev • 5 years agoPython Program to Calculate the Area of a Triangle# Python Program to find the area of trianglepython-dev (58)in #python-dev • 5 years agoPython Program to Find the Square Root# Python Program to calculate the square rootpython-dev (58)in #python-dev • 5 years agoPython Program to Add Two Numbers# This program adds two numberspython-dev (58)in #python-dev • 5 years agosteemCreated with Sketch.Introduction to Git (3) -Committing ChangesCommitting Changes When you commit changes, you are telling Git to make a snapshot of this state in the repo. Do…python-dev (58)in #python-dev • 5 years agosteemCreated with Sketch.Introduction to Git (2) - Adding a New FileNow create a file that Git doesn’t know about. With your favorite editor, create the file hello.py, which has just a…python-dev (58)in #python-dev • 5 years agosteemCreated with Sketch.Introduction to Git (1)Git is a distributed version control system (DVCS). Creating a New Repo To work with Git, you first need to tell…python-dev (58)in #python-dev • 5 years agoSelenium Managing Multiple TabsWebDriver driver = new FirefoxDriver(); python-dev (58)in #python-dev • 5 years agosteemCreated with Sketch.Creating A simple web application (3)Creating a Signup Page Step 1: Setting Up the Database We'll be using MySQL as the back end. So log into MySQL…python-dev (58)in #python-dev • 5 years agosteemCreated with Sketch.Creating A simple web application (2)First, when the application runs we should show a home page with the latest bucket list items added by users. So let's…