New: python-devAll contenthive-129948hive-196917krhive-185836zzanhive-183959photographysteemhive-180932hive-166405hive-101145hive-150122hive-183397uncommonlabhive-144064hive-184714hive-188619bitcoinhive-193637hive-103599krsuccesshive-145157hive-193186hive-180301hive-179660TrendingNewHotLikersthecrazygm (59)in test • 5 years agoNeed repliesI'm writing something and need to test, would appreciate any reply, even junk :)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 that now by using the git commit command. The -m option tells Git to use the commit…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 print statement in it. # hello.pypython-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 it who you are. You can set your username with the git config command: $ git…python-dev (58)in hive-107130 • 5 years agosteemCreated with Sketch.Search substring in all text files in a directoryThe following code searches a specific substring in all 'txt' file in a directory. import ospython-dev (58)in python-dev • 5 years agoSelenium Managing Multiple TabsWebDriver driver = new FirefoxDriver();