MYSQL SOLUTION Write SQL statements for the following based on table Garments: Create above table in MySQL. Insert records. To display the detail of class XII students in descending...
PYTHON…. SOLUTION….. Create a dataframe using lists. Display books for class XII. ...
PYTHON….. SOLUTION…… import pandas as pd # Empty list to store marks std_marks = # Input marks of 10 students for i in range(1, 11): m = int(input(f"Enter...
PYTHON….. NOTES Introduction to Dictionary in Python (Detailed Explanation) In Python, a dictionary is a powerful and flexible built-in data structure designed to store data in the form of...
LIST IN PYTHON NOTES Introduction to List in Python (Expanded Theory) In Python, a list is one of the most important and commonly used built-in data structures. A list...
CHATGPT Best ChatGPT Prompts for Indian Stock Market (NSE/BSE) – Trading, Analysis & Investing 1. Fundamental Analysis Prompt (Best Overall) Prompt: Act as a professional equity research analyst. Perform...
PYTHON Create a number list in Python n=int(input("Enter number of elements: ")) list_1 = for i in range(n): value = int(input(f"Enter element {i+1}: ")) list_1.append(value) print("Dynamic List:", list_1)...
PYTHON Create a list in Python to perform calculation n=int(input("Enter number of elements: ")) lst = for i in range(n): value = int(input(f"Enter element {i+1}: ")) lst.append(value) print("Dynamic...
PYTHON Create a list in Python n = int(input("Enter number of elements: ")) lst = for i in range(n): value = input(f"Enter element {i+1}: ") lst.append(value) print("Dynamic List:",...
PYTHON Write a Python program to check whether a number is palindrome or not. num = int(input("Enter the number :- ")) temp = num rev = 0 while temp...