Please Subscribe My YouTube Channel

Thursday, March 16, 2023

Create a Circle with python programming:-

Create a Circle with python programming:-

import turtle
#first we import turtle lib
c=turtle.Turtle() #create a storage to store turtle lib
c.pensize(5)#thicknes inc size of draw
c.hideturtle()
c.color('red')
turtle.title("ITCI Hardoi") #for give window screen title
turtle.bgcolor("aqua")
c.shape("turtle")#for display turtle remove hideturtle command
c.circle(150)
turtle.done() #tell to compiler that program is done





Please Subscribe My YouTube Channel

Python Program : List Method

Python Program : List Method

#list is a collection of diffrent types of data.
#enclosed with square brackets
#list elements seperated by comma
#It may be empty
#for creating a list we use list construtor or method
#list is mutable or changable (we can change / add/ remove / access list items)


# create an empty list
list1= []
print(list1)

#list with mixed data types
#with int string and float, tuple, list and set value.      

list2 = [1, "Hello", 3.4, (1,2,4), [1,3,4], {1,2,3}] 
print(list2)

#creating list with list constructor
tl= list(("apple", "banana", "cat"))
print(tl) #['apple', 'banana', 'cat']

#Acess list items
plang = ["Python", "Swift", "C++","Kotlin","C","C#"]

# access item at index 0
print(plang[0])# result:- Python

# access item at index 2
print(plang[2])   # C++
# access item at index 5
print(plang[5])   # C#

# access item at negative index -1
print(plang[-1])   # C#
# access item at negative index -2
print(plang[-2])   # C#

#access nested list element
list1=[5,3.2,'ram',6,8,9,[8,5,6]]

print(list1[6][1]) #5

#List slicing in Python

my_list = ['I','T','C','I',' ','H','A','R','D','O','I']

#items from index 2 to index 4
print(my_list[0:4]) #result- ['I','T','C','I']

# items from index 5 to end
print(my_list[5:]) #result:- ['H','A','R','D','O','I']
# result items beginning to end
print(my_list)
print(my_list[:])
print(my_list[:11])
print(my_list[-11:])


# Add element using append method in list
numbers= [21, 34, 54, 12]
print("Before Append:", numbers)
# after using append method
numbers.append(32) #it takes exactly one argument in one time
print("After Append:", numbers)

#with extend method you can add a list element in another list (join two lists)
#using extend method here you can also add any iterable object (tuples, sets, dictionaries etc.).
num1 = [2, 3, 5]
print("List1:", num1)
num2 = [4, 6, 8]
print("List2:", num2)
num2.extend(num1)
print("List after extend:", num2)

#or
fr_list = ["apple", "banana", "cherry"]
other_list = list(fr_list)
print(other_list)

#or using + concatenate operator
list1 = ["a", "b", "c"]
list2 = [1, 2, 3]
list3 = list1 + list2
print(list3)

#Creating nested list
list1 = [1, 2, 3, 4, 5]
print(list1)
list2 = [12, 13, 23]
print(list2)
list3 = [10, 20, 30]
print(list3)
NestedList = [list1, list2, list3, list4, list5]
print("The list of lists or Nested list is:")
print(NestedList)

#copy list items in another empty list
g= ["apple", "baby", "ambuj"]
a = g.copy()
print(a)

#or you can copy
g= ["anand", "vartika", "chaya"]
a = list(g)
print(a)



#insert an item in list without removing existing element
thislist = ["apple", "banana", "cow"]
thislist.insert(2, "water") 
print(thislist) # here result will be ["apple", "banana", "water","cow"]

# changing list item:(it's mutable so we can change list items.
color= ['pink', 'red', 'gray']

# changing the third item to 'C'
color[2] = 'green'

print(color)  # ['pink', 'red', 'green']

# changing the list items acc to range(change range)
th = ["apple", "blue", "cool", "orange", "kiwi", "mango"]
print(th) #["apple", "blue", "cool", "orange", "kiwi", "mango"]
th[1:3] = ["black", "bag"]
print(th) #["apple", "black", "bag", "orange", "kiwi", "mango"]

#pop method for using last element from list or remove item acor to index value
t = ["apple", "banana", "cherry"]
t.pop()
print(t) #["apple", "banana"]

t1=["ajay", "vijay", "chetan"]
t1.pop(2)
print(t1)

#remove method for remove any specific element
prog = ['Python', 'Swift', 'C++', 'C', 'Java', 'Ruby', 'php']
prog.remove('Java')
print(prog)

#remove list items using del keyword
prog = ['Python', 'Swift', 'C++', 'C', 'Java', 'Ruby', 'php']

# deleting the second item
del prog[1]
print(prog) # ['Python', 'C++', 'C', 'Java', 'Ruby', 'php']

# deleting the last item
del prog[-1]
print(prog) # ['Python', 'C++', 'C', 'Java', 'Ruby']

# delete first two items
del prog[0 : 2]  # ['C', 'Java', 'Ruby']
print(prog)


# del all list in one time with del and clear
prog = ['Python', 'Swift', 'C++', 'C', 'Java', 'Ruby', 'php']
del prog

prog1= ['Python', 'Swift', 'C++', 'C']
prog1.clear()
print(prog1) #return empty list

#creating a list with for loop
for i in range(6):
         print(i)
#print all items from list by using loop method
z=['a','b','c','d']
for i in (z):
    print(i)
#append item from one list to another list using loop
fruits = ["apple", "banana", "cherry", "kiwi", "mango"]
newlist = []

for x in fruits:
  if "a" in x:
    newlist.append(x)

print(newlist) #the result will be ["apple", "banana", "mango"] bcz a is found in all items

#sort the list items
fruit = ["orange", "mango", "kiwi", "pineapple", "banana"]
fruit.sort()
print(fruit) #['banana', 'kiwi', 'mango', 'orange', 'pineapple']

num= [100, 50, 65, 82, 23]
num.sort()
print(num)

#sort list in descending order
num= [100, 50, 65, 82, 23]
num.sort(reverse = True)
print(num)

#count the items from list

fruits = ["apple", "banana", "cherry","cherry"]

x = fruits.count("cherry")

print(x) #result:- 2

#find index value from list items
fruits = ['apple', 'banana', 'cherry']

x = fruits.index("banana")

print(x) #index value is 1






















































Tuesday, March 14, 2023

Quiz Program With Python Programming

Create a Quiz Program With Python:-


print("Welcome To ITCI")

print("\n")
score=0
user=input("Do you want play the quiz ?  ")
if (user=='y' or user=='Y'):#user can press y or Y
    print("\nLets play!!\n")
else:
    print("See you Next Time")#if user press No then this msg display
    exit()#and program will stop
Q1=input('Q1. What is the full form of C.P.U ?\nA. Centeral Process Unit.\nB. Central Processing Unit.\nYour Answer:-')
if(Q1=='b' or Q1=='B'):
    print("Correct\n")
    score+=1
else:
    print("you are wrong\n")
Q2=input("Q1. What is the full form of A.L.U ?\nA. Airthmatic Logic Unit.\nB. Airclock Logic Unit.\nYour Answer:- ")
if(Q2=='a' or Q2=='A'):
    print("Correct\n")
    score+=1
else:
    print("you are wrong\n")
Q2=input("Q1. How many hours in a day ?\nA. 24 hours.\nB. 23 hours.\nYour Answer:- ")
if(Q2=='a' or Q2=='A'):
    print("Correct\n")
    score+=1
else:
    print("you are wrong\n")
q3=input("a for:-\nA.apple\nB.egg\nYour answer:- ")
if (q3=='a' or q3=='A'):
    print("correct")
    score+=1
else:
    print("wrong")
    
print("Your Score is",score,"out of 4.\nThanks!!")
exit()

How to Draw Square with Python.

How to Draw Square with Python :-

import turtle #first we import turtle lib
tur=turtle.Turtle() #create a storage to store turtle lib
tur.color("red")
tur.pensize(5)
tur.hideturtle() #turtle will be hide when square is drawing
'''now we create a square you can use fd or forward to move
the turtle to forward side and rt or right
for move turtle to right side.'''
tur.fd(200)
tur.rt(90)
tur.fd(200)
tur.rt(90)
tur.fd(200)
tur.rt(90)
tur.fd(200)
tur.rt(90)
turtle.done() #tell to compiler that program is done

#note: - Using for loop

import turtle #first we import turtle lib
tur=turtle.Turtle() #create a storage to store turtle lib
tur.color("red")
tur.pensize(5)
tur.hideturtle() #turtle will be hide when square is drawing
'''now we create a square you can use fd or forward to move
the turtle to forward side and rt or right
for move turtle to right side.'''
for i in range(4):
    tur.fd(200)
    tur.rt(90)
turtle.done() #tell to compiler that program is done


How To Make Vote Age Calculator with Python

How To Make Vote Age Calculator with Python


print("Hi!\nWelcome To Voting Pannel")
age=int(input("Enter your age:- "))
if age >=18:
    print("you Are Eligible For Vote")
else:
    print("you Are Not Eligible For Vote")



Watch full video about this blog.


Sunday, March 12, 2023

How to draw Batsman with Python Programming:-

How to draw Batsman with Python Programming:-


import turtle

#initialize method

bat = turtle.Turtle()

#size of pointer and pen
bat.turtlesize(1, 1, 1)
bat.pensize(3)

#screen info
wn = turtle.Screen()
wn.bgcolor("red")
wn.title("BATMAN")

#colour
bat.color("yellow", "black")


#begin filling color
bat.begin_fill()

#turn1
bat.left(90)   # turn pointer direction to left of 90'
bat.circle(50, 85) #draw circle of radius = 50 and 85'
bat.circle(15, 110)
bat.right(180)

#turn 2
bat.circle(30, 150)
bat.right(5)
bat.forward(10) #draw forward line of 10 units

#turn 3
bat.right(90)
bat.circle(-70, 140)
bat.forward(40)
bat.right(110)

#turn 4
bat.circle(100, 30)
bat.circle(30, 100)
bat.left(50)
bat.forward(50)
bat.right(145)

#turn5
bat.forward(30)
bat.left(55)
bat.forward(10)

#reverse

#turn 5
bat.forward(10)
bat.left(55)
bat.forward(30)

#turn 4

bat.right(145)
bat.forward(50)
bat.left(50)
bat.circle(30, 100)
bat.circle(100, 30)

#turn 3
bat.right(90)
bat.right(20)
bat.forward(40)
bat.circle(-70, 140)

#turn 2
bat.right(90)
bat.forward(10)
bat.right(5)
bat.circle(30, 150)

#turn 1
bat.left(180)
bat.circle(15, 110)
bat.circle(50, 85)

#end color filling
bat.end_fill()

#end the turtle method
turtle.done()

Python program :- How to convert Rs to paisa & Days to hours.

Python program :- How to convert Rs to paisa. 



paise = 100
rs = int(input('Enter amount in rupees: '))

result = rs * paise

print(f"{result} paise")


Python program :- How to convert paisa to Rs


rs = 100
paise = float(input('Enter amount in rupees: '))

result = paise / rs

print(result, 'Rs') #you can also type this:- print(f'{result} Rs.')


Python program :- How to convert Days to hours.


days = int(input("Enter amount of days: "))

hours = days * 24

print(f"{hours} hours")




How to Draw Doraemon Picture with Python Programming

How to Draw Doraemon Picture with Python Programming


from turtle import *                                 



# Doraemon with Python Turtle
def ankle(x, y):
    penup()
    goto(x, y)
    pendown()


def eyes():
    fillcolor("#ffffff")
    begin_fill()

    tracer(False)
    a = 2.5
    for i in range(120):
        if 0 <= i < 30 or 60 <= i < 90:
            a -= 0.05
            lt(3)
            fd(a)
        else:
            a += 0.05
            lt(3)
            fd(a)
    tracer(True)
    end_fill()


def daari():
    ankle(-32, 135)
    seth(165)
    fd(60)

    ankle(-32, 125)
    seth(180)
    fd(60)

    ankle(-32, 115)
    seth(193)
    fd(60)

    ankle(37, 135)
    seth(15)
    fd(60)

    ankle(37, 125)
    seth(0)
    fd(60)

    ankle(37, 115)
    seth(-13)
    fd(60)


def mukh():
    ankle(5, 148)
    seth(270)
    fd(100)
    seth(0)
    circle(120, 50)
    seth(230)
    circle(-120, 100)


def scarf():
    fillcolor('#e70010')
    begin_fill()
    seth(0)
    fd(200)
    circle(-5, 90)
    fd(10)
    circle(-5, 90)
    fd(207)
    circle(-5, 90)
    fd(10)
    circle(-5, 90)
    end_fill()


def nose():
    ankle(-10, 158)
    seth(315)
    fillcolor('#e70010')
    begin_fill()
    circle(20)
    end_fill()


def black_eyes():
    seth(0)
    ankle(-20, 195)
    fillcolor('#000000')
    begin_fill()
    circle(13)
    end_fill()

    pensize(6)
    ankle(20, 205)
    seth(75)
    circle(-10, 150)
    pensize(3)

    ankle(-17, 200)
    seth(0)
    fillcolor('#ffffff')
    begin_fill()
    circle(5)
    end_fill()
    ankle(0, 0)


def face():
    fd(183)
    lt(45)
    fillcolor('#ffffff')
    begin_fill()
    circle(120, 100)
    seth(180)
    # print(pos())
    fd(121)
    pendown()
    seth(215)
    circle(120, 100)
    end_fill()
    ankle(63.56, 218.24)
    seth(90)
    eyes()
    seth(180)
    penup()
    fd(60)
    pendown()
    seth(90)
    eyes()
    penup()
    seth(180)
    fd(64)


def taauko():
    penup()
    circle(150, 40)
    pendown()
    fillcolor('#00a0de')
    begin_fill()
    circle(150, 280)
    end_fill()


def Doraemon():
    taauko()

    scarf()

    face()

    nose()

    mukh()

    daari()

    ankle(0, 0)

    seth(0)
    penup()
    circle(150, 50)
    pendown()
    seth(30)
    fd(40)
    seth(70)
    circle(-30, 270)

    fillcolor('#00a0de')
    begin_fill()

    seth(230)
    fd(80)
    seth(90)
    circle(1000, 1)
    seth(-89)
    circle(-1000, 10)

    # print(pos())

    seth(180)
    fd(70)
    seth(90)
    circle(30, 180)
    seth(180)
    fd(70)

    # print(pos())
    seth(100)
    circle(-1000, 9)

    seth(-86)
    circle(1000, 2)
    seth(230)
    fd(40)

    # print(pos())

    circle(-30, 230)
    seth(45)
    fd(81)
    seth(0)
    fd(203)
    circle(5, 90)
    fd(10)
    circle(5, 90)
    fd(7)
    seth(40)
    circle(150, 10)
    seth(30)
    fd(40)
    end_fill()

    seth(70)
    fillcolor('#ffffff')
    begin_fill()
    circle(-30)
    end_fill()

    ankle(103.74, -182.59)
    seth(0)
    fillcolor('#ffffff')
    begin_fill()
    fd(15)
    circle(-15, 180)
    fd(90)
    circle(-15, 180)
    fd(10)
    end_fill()

    ankle(-96.26, -182.59)
    seth(180)
    fillcolor('#ffffff')
    begin_fill()
    fd(15)
    circle(15, 180)
    fd(90)
    circle(15, 180)
    fd(10)
    end_fill()

    ankle(-133.97, -91.81)
    seth(50)
    fillcolor('#ffffff')
    begin_fill()
    circle(30)
    end_fill()
    # Doraemon with Python Turtle

    ankle(-103.42, 15.09)
    seth(0)
    fd(38)
    seth(230)
    begin_fill()
    circle(90, 260)
    end_fill()

    ankle(5, -40)
    seth(0)
    fd(70)
    seth(-90)
    circle(-70, 180)
    seth(0)
    fd(70)

    ankle(-103.42, 15.09)
    fd(90)
    seth(70)
    fillcolor('#ffd200')
    # print(pos())
    begin_fill()
    circle(-20)
    end_fill()
    seth(170)
    fillcolor('#ffd200')
    begin_fill()
    circle(-2, 180)
    seth(10)
    circle(-100, 22)
    circle(-2, 180)
    seth(180 - 10)
    circle(100, 22)
    end_fill()
    goto(-13.42, 15.09)
    seth(250)
    circle(20, 110)
    seth(90)
    fd(15)
    dot(10)
    ankle(0, -150)

    black_eyes()


if __name__ == '__main__':
    screensize(800, 600, "#f0f0f0")
    pensize(3)
    speed(9)
    Doraemon()
    ankle(100, -300)
    mainloop()

Aadhar No Validation Program In python (Chech Aadhar No Is Valid or Not.)

Aadhar  No Validation Program In python (Chech Aadhar No Is Valid or Not.)



# Number should be 12 chars
# Number should not start with 0 or 1
# It should not contain alphabets

num = input("Please enter a 12 digit mobile number: ")

# Check if number length is greater or less then 12
if len(num) > 12 or len(num) < 12:
    print("Aadhar number is not valid (Enter a 12 digit number)")
else:
    # Check if first number is 0 or 1
    if num[0] == '0' or num[0] == '1':
        print("Aadhar number is not valid (Aadhar card number cannot start with 0 or 1)")
    else:
        try:
            num = int(num)
            print("Aadhar number is valid") #this block try if no error
        except: #this block print when try block or statement have an error
            print('Aadhar number is not valid (Aadhar number should not contain any characters)')





Saturday, March 11, 2023

How to hack/crack wifi password

How to hack/crack wifi password ?






Friday, March 10, 2023

How to make fast your Computer PC or Laptop



How to make faster your pc or computer?

(How to do fast your computer speed or fix hanging problem.)
 
दोस्तों यंहा पर हम आपको बताने वाले है कि आप अपने कंप्यूटर कि स्पीड को कैसे बढ़ा सकते है.
दोस्तों आपके कंप्यूटर कि स्पीड यदि स्लो है तो इसके कई कारण हो सकते है जैसे :-
  1. आपके कंप्यूटर में वायरस हो सकते हैं.
  2. आपके कंप्यूटर में ऐसी फाइल्स हो सकती हैं जो हमारे काम कि नही है जो कंप्यूटर में कंही न कंही पर पड़ी रहती है, जिन्हें हम आसानी से ढूंढ नही पाते है,
  3. आपके कंप्यूटर के ऑन होते ही कुछ ऐसे सॉफ्टवेर अपने आप स्टार्ट हो जाते है जिनकी हमें जरुरत नही होती,
  4. आपके कंप्यूटर कि मेमोरी में स्टोरेज का कम होना भी आपके कंप्यूटर के स्लो होने का कारण बन सकता है .

अब दोस्तों आप अपने कंप्यूटर कि स्पीड कैसे बढायेगे या इन सभी कमियों को कंप्यूटर में कैसे फिक्स करेगे इसके लिए हम कुछ ट्रिक्स और कमांड का प्रयोग करेगे तो चलिए शुरूकरते हैं :-