Skip to main content

Acquire a Knowledge of Python Programming Language


Hello Friends๐Ÿ’



In Our Previous Blog, We have Learned the Basics of Python Programming Language & Simple Program in Python Programming Language.

Now In this Blog, Today we will create a Basic Project in Python Programming Language.

With the Help of the Program, We will be able to Easily see the Length and Width of a House and the Number of tiles to be Installed in that House and the Cost to be Installed as well as the Cost of Wiring in the House.


Basic Project in Python Programming Language.


Basic Project Program

l=int(input("Enter Your House Length=\t"))

a=l*b

print("Area of House=",a,"sq. =\t")

print("Select       Tiles        Price(per/sq)")

print("A    -   Black-Marbel    150/sq")

print("B    -   Kota Stone        100/sq")

print("C    -   Granite              200/sq")

print("D    -   White-Marbel   250/sq")

ch=input("Select Any Tiles in Form of A,B,C Or D = ")

tl=int(input("Enter Length of Tiles=\t"))

tb=int(input("Enter Length of Tiles=\t"))

ta=tl*tb

print("Area of Tiles= ",ta,"sq")

x=int(a/ta)

print("Tiles Using In House=\t",x)

if ch=='a' or ch=='A':

    p=x*ta*150

    print("Price of Tiles Using In House=",p)

elif ch=='b' or ch=='B':

    p=x*ta*100

    print("Price of Tiles Using In House=",p)

elif ch=='c' or ch=='C':

    p=x*ta*200

    print("Price of Tiles Using In House=",p)

elif ch=='D' or ch=='d':

    p=x*ta*250

    print("Price of Tiles Using In House=",p)

else:

    print("Select Correct Character")

la=int(input("Enter Tiles Labour price Per Square Feet= \t"))

o=la*a

print("Labour Charge=\t",o)

o=o+p

print("Installation of Tiles Total Expense  = ",o)

wire=int(input("How many square feet of wire do you want to

install in your house? = "))

pr=int(input("Price of wire Per square Feet =\t"))

g=wire*pr

print("Wire Charge or price = ",g)

lb=int(input("Labour Charge to Install Wire in House Per/sq. Price=\t"))

h=wire*lb

print("Labour Charge =\t",h)

h=h+g

print("Total Expense to Install wire in House = \t",h)

me=h+o

print("Total Expense in House=\t",me)

b=int(input("Enter Your House Breath=\t"))


Output

Enter Your House Length= 60

Enter Your House Breath= 20

Area of House= 1200 sq. =

Select      Tiles       Price(per/sq)

A    -   Black-Marbel    150/sq

B    -   Kota Stone        100/sq

C    -   Granite              200/sq

D    -   White-Marbel    250/sq

Select Any Tiles in Form of A,B,C Or D = b

Enter Length of Tiles= 3

Enter Length of Tiles= 4

Area of Tiles=  12 sq

Tiles Using In House= 100

Price of Tiles Using In House= 120000

Enter Tiles Labour price Per Square Feet= 8

Labour Charge=    9600

Installation of Tiles Total Expense  =  129600

How many square feet of wire do you want to install in your house? = 1500

Price of wire Per square Feet = 5

Wire Charge or price =  7500

Labour Charge to Install wire in House Per/sq. Price= 7

Labour Charge = 10500

Total Expense to Install wire in House = 18000

Total Expense in House= 147600


If You want to Know the Basics of Python Programming Language then Click On this Link.


If You want to Know about Information Technology or It Technology, Then Click on the Link given above.

If you want to see our privacy policy then you can click on this link.



Hope, You Enjoy this Our Blogs on Python Language.๐Ÿ˜Š



Comments

Post a Comment

Popular posts from this blog

Read about Python Programming Language.

       Hello Friends. In Our Previous Blog ,   We have Learned the Basics of Python Programming Language & Simple Program in  Python Programming Language. In Today's Blog We Will Create Some Basic Program in Python Programming Language. Print List Item in Assending Order Without Using Sort Function Program in Python Programming Language. Assending Order- Program #List in Assending Order list=[9,5,1,7,5,3,6,2,8,0] for i in range(0,len(list)):     for j in range(i+1,len(list)):         if list[i]>list[j]:             temp=list[i]             list[i]=list[j]             list[j]=temp print(type(list)) print("Assending Order = ",list)      Outpu t <class 'list'> Assending Order =  [0, 1, 2, 3, 5, 5, 6, 7, 8, 9] Print List Item in Dessending Order Without Using Sort Function Program in Python Programming Language...

Learn Python Programming

  Hello Friends.๐Ÿ’– In Our Previous Blog,   We have Learned the Basics of Python Programming Language & 2 Digit Swapping Program. "Now In this Blog, We will learn to make Palindrom Number Programs in Python Programming Language." Python Program To Check Number is Palindrom Or Not a Palindrom. Program no=int(input("Enter Any Number = \t")) temp=no sum=0 while no>0:     r=no%10     sum=sum*10+r     no=int(no/10) if temp==sum:     print("Palindrom Number = \t",sum) else:     print("Not a Palindrom Number = \t",sum) Output Enter Any Number =     1219 Not a Palindrom Number =     9121 Enter Any Number =    171 Palindrom Number =    171 If You want to Know the Basics of Python Programming Language then Click On this Link. Learn Basics of Python Learn Hello-World Program in Python Learn Swapping Program in Python Learn Prime Number Program in Python If You want to Know about Information Te...

Read Some Basic Program in Python

      Hello Friends๐Ÿ’– In Our Previous Blog ,   We have Learned the Basics of Python Programming Language & Simple Program in  Python Programming Language. In Today's Blog We Will Create Some Basic Program in Python Programming Language. Some Basic Program in Python Programming Language. Factorial- Program #Factorial Program in Python. no=int(input("Enter any Number = ")) fact=1 print("Factoral - Series ") for i in range(1,no+1):     fact=fact*i     print(fact) Outpu t Enter any Number = 10 Factoral - Series  1 2 6 24 120 720 5040 40320 362880 3628800 Some Basic Program in Python Programming Language. Fibonacci Program #Fibonacci Program In Python a=int(input("Enter Second Value = ")) b=int(input("Enter First Value = ")) print("Fibonacci-Series") for i in range(0,10):     total=a+b     a=b     b=total     print(total) Outpu t Enter Second Value = 1 Enter First Value = 2 Fibonacci-Series 3 5 8 13...