Posts

Showing posts from May, 2024

SQL Notes for basic to advance.

Image
First of all if i open the sql command or Workbench then need to password. Enter password: ****** Welcome to the MySQL monitor.  Commands end with ; or \g. Your MySQL connection id is 13 Server version: 8.0.37 MySQL Community Server - GPL Copyright (c) 2000, 2024, Oracle and/or its affiliates. Oracle is a registered trademark of Oracle Corporation and/or its affiliates. Other names may be trademarks of their respective owners. Type 'help;' or '\h' for help. Type '\c' to clear the current input statement. #Data base ko dekhne ke liye quary:- ---------------------------------------- mysql> SHOW DATABASES; # then by default eske under jentna bhi rhega sb at a time execute hoga. +--------------------+ | Database           | +--------------------+ | information_schema | | mysql              | | performance_schema | | sys                | +--------------------+ 4 rows in set (0.01 ...

Streamlit web development concept

Image
💻💻Streamlit documentation 💻💻 Streamlit is an open-source Python library that allows developers to create interactive, web-based data applications with minimal effort. Below is an overview of Streamlit's documentation, including examples and functions. Streamlit Overview:- Streamlit is designed to make it easy to build and share data apps. It integrates seamlessly with Python scripts and provides a simple way to convert data scripts into interactive web applications. Installation First, you need to install Streamlit: sh Copy code pip install streamlit Running a Streamlit App:- To run a Streamlit app, create a Python script (e.g., app.py ) and use the following command: sh opy code streamlit run app.py Basic Example:- Here's a basic example of a Streamlit app: python opy code import streamlit as st import pandas as pd import numpy as np # Title st.title( 'My First Streamlit App' ) # Header st.header( 'Introduction to Streamlit' ) # Subheader st.sub...