Skip to content
Xiith
  • Home
  • C
  • C++
  • C#
  • Java
  • Python
  • Kotlin
  • R
  • Go
  • JavaScript
  • About us
Search this website
Menu Close
  • Home
  • C
  • C++
  • C#
  • Java
  • Python
  • Kotlin
  • R
  • Go
  • JavaScript
  • About us

Python Program to add three numbers

In this program, you will learn how to add three numbers in Python. z = int(input("Enter third number:")) Example: How to add three numbers in Python x = int(input("Enter first…

Continue ReadingPython Program to add three numbers

Python Program to delete a single row from a table using MySQL

In this program, you will learn how to delete a single row from a table using Python and MySQL. create database xiith; use xiith; create table emp(id varchar(10), name varchar(30),salary…

Continue ReadingPython Program to delete a single row from a table using MySQL

Python Program to delete all rows from a table using MySQL

In this program, you will learn how to delete all rows from a table using Python and MySQL. create database xiith; use xiith; create table emp(id varchar(10), name varchar(30),salary int(10))…

Continue ReadingPython Program to delete all rows from a table using MySQL

Python Program to get column names and values of a table using MySQL

In this program, you will learn how to get column names and values of a table using Python and MySQL. cur.execute("select * from emp") result = cur.fetchall() num_fields = len(cur.description)…

Continue ReadingPython Program to get column names and values of a table using MySQL

Python Program to fetch all values from a table using MySQL

In this program, you will learn how to fetch all values from a table using Python and MySQL. create database xiith; use xiith; create table emp(id varchar(10), name varchar(30),salary int(10))…

Continue ReadingPython Program to fetch all values from a table using MySQL

Python Program to insert user input data into a table using MySQL

In this program, you will learn how to insert user input data into a table using Python and MySQL. create database xiith; use xiith; create table emp(id varchar(10), name varchar(30),salary…

Continue ReadingPython Program to insert user input data into a table using MySQL

Python Program to insert data into a table using MySQL

In this program, you will learn how to insert data into a table using Python and MySQL. create database xiith; use xiith; create table emp(id varchar(10), name varchar(30),salary int(10)) select…

Continue ReadingPython Program to insert data into a table using MySQL

Python Tkinter open a new window on button click

In this program, You will learn how to Tkinter open a new window on button click in Python. self.b1 = Button(tk, text="Go Second", command=self.change).place(x=60, y=300) Example: How to Tkinter open…

Continue ReadingPython Tkinter open a new window on button click

Python Tkinter program to remove the selected item from Listbox

In this program, you will learn how to remove the selected item from Tkinter Listbox in Python. self.listbox.delete(ANCHOR) Example: How to remove the selected item from Tkinter Listbox in Python…

Continue ReadingPython Tkinter program to remove the selected item from Listbox

Python Tkinter program to add an item to Listbox

In this program, you will learn how to add an item to Tkinter Listbox in Python. self.listbox.insert(Test.index, self.e1.get()) Test.index = Test.index + 1 Example: How to add an item to…

Continue ReadingPython Tkinter program to add an item to Listbox
  • 1
  • 2
  • 3
  • 4
  • …
  • 18
  • Go to the next page

Xiith is created for educational, experimental, and schooling purpose. Examples on Xiith are made easier to make a better or basic understanding. Tutorials, testimonials, and examples are continuously checked to avoid delusion, but we cannot take complete responsibility of all programs on Xiith. When you are operating this site, you have to agree to read and accept our terms of use, cookie and privacy policy. Copyright © 2021 by Xiith. All Rights Reserved. About us.