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...
PYTHON Write a Python program to print Fibonacci series. nterms = int(input("How many terms? ")) n1, n2 = 0, 1 count = 0 if nterms
PYTHON Write a python program to check whether a number is Armstrong number or not. num = int(input("Enter the number :- ")) temp = num sum = 0 while...
PYTHON Write a Python program to calculate factorial of a number. num = int(input("Enter a number: ")) factorial = 1 if num < 0: print("Sorry, factorial does not exist...
PYTHON Write a Python program to enter a number and print its reverse. num = int(input("Enter the number :- ")) temp = num rev = 0 while temp !=0:...
PYTHON Write a Python Program to check whether the given number is Even or Odd number = int(input("Enter the number :- ")) if number %2 == 0: print("The number...