Class XI- Videos
Here you will get all videos on all class XI Python concepts from the beginning like from downloading to executing simple programs. How to install Python …
Here you will get all videos on all class XI Python concepts from the beginning like from downloading to executing simple programs. How to install Python …
FUNCTION Function_practice_questions Function_list_questions Function_output_questions Function_Program_questions Function_practice_questions_error and Output MySQL MySQL Assignment 1 MySQL Assignment 2 MySQL Assignment 3 MySQL Assignment 4 MySQL Assignment 5 MySQL Assignment 6 MySQL Assignment 7 MySQL Assignment 8 MySQL Assignment 9 MySQL Assignment 10 MySQLAssignments_Solutions STACK Stack Assignment 1 with solutions Stack Assignment 2 with solutions Stack Assignment 3 with…
MySQL with Python Connectivity Notes import mysql.connector as m db = m.connect(host=”localhost”,user=”root”,passwd=”1234″) # Open database connection cursor = db.cursor() # prepare a cursor object using cursor() method cursor.execute(“show databases”) # execute SQL query using execute() method. data = cursor.fetchone() # Fetch a single row using fetchone() method. print (“Database version : %s ” % data)…
MySQL Notes MySQL Termionologies:- Data :- Raw facts and figures are called data.it can be in the form of name,phone,unique id ,address etc. We cannot take decisions on the basis of data. Information:- Well organised and processed data is called information. We can take decisions on the basis of information Field: Set of characters that…
Meaning of Debugging Debugging means the process of finding errors, finding reasons for errors, and techniques of their fixation. An error, also known as a bug, is a programming code that prevents a program interpretation. Errors are of three types – Compile Time Error Run Time Error Logical Error Compile-time error : These errors are…
Data Type Data types are used to identify the type of data and set of valid operations that can be performed on it. Python has the following data types: Numbers( integer(whole no), floating(number with decimal) – String – List – Tuple – Dictionary
Conditional Statement – If… Else Conditional Statements (Decision Making) The basic decision statements in the computer are selection structure. The decision is described to computer as a conditional statement that can be answered True or False Python language provides the following conditional (decision making) statements. If statement If….. else statement If……elif…..else statement Nested if …….