Posts

Showing posts with the label Learn Python

Lists in Python | Python Lists | Lists Functions in Python | Implementation of Lists in Python | Use of Lists in Python | Python by Gaurav Pali

Lists in Python | Python Lists | Lists Functions in Python | Implementation of Lists in Python | Use of Lists in Python | Python by Gaurav Pali Video Link:- https://youtu.be/4mfBYuLAlbY Code: ##a=[10,20,30,40,50,60,70,20] ##print(a) ##for i in range(len(a)): ##    print(a[i]) ##print(a[-4:-2]) ##b=["abc","xyz","pqr"] ##print(b[1]) ##a[3]=90 ##print(len(a)) ##c=[True, True,False,True,False] ##print(c) ##mix=[1,5,"hello",7,"bye",False,12,True,"good",6.5,8] ##print(mix) ##li=list(("Mouse","Keyboard","Scanner","Motherboard")) ##print(li) ## ##print(type(a)) ##print(type(b)) ##print(type(c)) ##print(type(mix)) ##print(type(li)) ##if "Mouse" in li: ##    print("yes, Mouse is in the list") ##li[1]="Mike" ##print(li) ##li[1:3]=["CPU"] ##print(li) ## ##li.insert(2,"Monitor") ##print(li) ##li.append("CPU") ##print(li) ## ##rr=[1,2,3,4,5...

Input Function In Python

Image
Input Function In Python TRY THE FOLLOWING COMMANDS ONE BY ONE print("Enter your name") name=input() print("My name is "+name)   name=input("Enter your name") print("My name is "+name)   name=input("Enter your name\n") print("My name is "+name)   a=input("Enter a Number") print(a)   a=input("Enter a Number\n") print("Value of a is "+a)   a=input("Enter First Number\n") b=input("Enter Second Number\n") c=a+b print("Sum of a and b is "+c)   a=int(input("Enter First Number\n")) b=int(input("Enter Second Number\n")) c=a+b print("Sum of a and b is "+c)   a=int(input("Enter First Number\n")) b=int(input("Enter Second Number\n")) c=a+b print("Sum of a and b is "+str(c))   a=float(input("Enter First Number\n")) b=float(input("Enter Second Number\n")) c=a+b print("Sum of a and b is "+str(...

Add Two Numbers In Python

Image
How to add two numbers in Python

Python Installation

Image
Python Installation | How To Download And Install Python 3.8.3 On Windows 10 64 Bit |  #installpy To know how to download Python Go to my YouTube Channel. Search Gaurav Pali or #installpy on YouTube