Real Programmer
  • About
  • Tutorial
    • Laravel
    • Django
    • PHP
    • JavaScript
    • AWS
    • Node.js
    • Git
    • WordPress
  • Laravel
    • Laravel 8
    • Laravel 7
    • Laravel 6
  • Codeigniter
  • AWS
  • Node.js

Python

Python July 17, 2020

Python Chatbot Project – Learn to build your first chatbot using NLTK & Keras

Read More: https://data-flair.training/blogs/python-project-gender-age-detection/

Read More
Python November 6, 2019

Sort the result in python using mysql

Use the ORDER BY statement to sort the result in ascending order. import mysql.connector as mysql db = mysql.connect( host =”localhost”, username= “root”, password = “[email protected]”, database = “realprogrammers” ) cursor = db.cursor() # defining…

Read More
Python November 6, 2019

Update record from the database with where condition using python

Update keyword is used to Update the records from the table. import mysql.connector as mysql db = mysql.connect( host =”localhost”, username= “root”, password = “[email protected]”, database = “realprogrammers” ) cursor = db.cursor() # defining…

Read More
Python November 4, 2019

Delete record from the database with where condition using python

DELETE keyword is used to delete the records from the table. DELETE FROM table_name WHERE condition statement is used to delete records. If you…

Read More
Python November 4, 2019

Where is used to select data on condition in python

Where is used to select data on condition. Now, we will select a record with name Siddharth. SELECT column_name FROM table_name WHERE condition statement…

Read More
Python November 4, 2019

Getting some columns from a table in python

import mysql.connector as mysql db = mysql.connect( host=”localhost”, user=”root”, passwd=”[email protected]″, database=”realprogrammer” ) cursor = db.cursor() ## defining the Query query = “SELECT user_name FROM…

Read More
Python November 4, 2019

Select Data from table in python

To retrieve the data from a table we use, SELECT column_names FROM table_name statement. Getting All Records From Table import mysql.connector as mysql db…

Read More
Python November 4, 2019

Inserting Multiple Rows Python

Inserting Multiple Rows You can check how to insert multiple rows into the table. To insert multiple rows into the table, we use the…

Read More
Python November 4, 2019

Inserting data in Python

Inserting data in Python Inserting data into a table to store it. Use INSERT INTO table_name (column_names) VALUES (data) statement to insert into the…

Read More
Python November 4, 2019

Create a database in python

## Connecting to the database import mysql.connector as mysql db = mysql.connect( host=”localhost”, user=”root”, passwd=”[email protected]″, ) ## creating an instance of ‘cursor’ class which…

Read More
Python November 4, 2019

Creating Table in python

Creating tables in the database to store data. Before creating tables, we have to select a database first. Run the following code, to select…

Read More
Python November 4, 2019

Connect to the database in python

Create a folder and go inside of the folder mkdir python_database cd python_database Installation pip install mysql-connector-python Now Create file db.py ## Connecting to…

Read More
Previous1 2Next
  • Ad
  • Recent Posts
    • How to fix file format and extension don’t match?
    • how to change php version 8 to 7.1 in ubuntu 20.04 Code Answer
    • How to Reindex Magento 2 from SSH/CLI or Admin Panel?
    • mysqldump: Couldn’t execute. Unknown table ‘column_statistics’ in information_schema
    • Simulate a specific CURL in PostMan
  • Categories
    • .htaccess (6)
    • Ajax (4)
    • Angular (3)
    • AWS (19)
    • bootstrap (3)
    • CloudFlare (2)
    • Codeigniter (13)
    • Composer (4)
    • CSS (2)
    • Datatables (2)
    • Django (20)
    • Email (1)
    • FTP (1)
    • Git (20)
      • Gitlab (11)
    • Github (14)
    • Google Cloud Computing (1)
    • google translate (3)
    • Html (3)
    • Hubspot (1)
    • Java Script (3)
    • Jquery (11)
    • JS (4)
    • Laravel (107)
      • Form Validation (1)
      • Laravel Interview question (2)
    • Laravel 6 (36)
    • Laravel 7 (50)
    • Laravel 8 (32)
    • laravel 9 (22)
    • Laravel Error (5)
    • Livewire (2)
    • Mac (1)
    • Magento (31)
    • MAMP (5)
    • Materialize (1)
    • Mysql (14)
    • Node js (5)
    • PHP (45)
    • php in (1)
    • PHP Interview (5)
    • Programming (1)
    • Python (15)
    • Rest API (4)
    • SCP (1)
    • SQL (1)
    • SSH (2)
    • SSL (4)
    • Sublime Editor (1)
    • Terminal (1)
    • Ubuntu (23)
    • Uncategorized (4)
    • Voygers (1)
    • VS Code (1)
    • Website (2)
    • Wordpress (30)

CUSTOMIZE BY REAL PROGRAMMER.

Top
  • About
  • Tutorial
    • Laravel
    • Django
    • PHP
    • JavaScript
    • AWS
    • Node.js
    • Git
    • WordPress
  • Laravel
    • Laravel 8
    • Laravel 7
    • Laravel 6
  • Codeigniter
  • AWS
  • Node.js

Type above and press Enter to search. Press Esc to cancel.