Skip to main content

Posts

Basic 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, We Will Make a Table of Any Number. Make a Table of Any Number in Python Programming Language. Basic Program no=int(input("Enter Any Number = ")) table = 0 print("Table of Number ",no) for i in range(1,11):      table=no*i      print(table) Outpu t Enter Any Number = 18 Table of Number  18 18 36 54 72 90 108 126 144 162 180 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 Palindrom Number Program in Python Learn Prime Number Program in Python Learn about Loops & his Program Example Learn How to Find Value type in Python Learn A Basic Project in Python If You want to Know about Information Technology or It Technology, Then Click on...

Familiarize Yourself With The 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 a Program with the Help of Which We Will be able to Divide any Digit Number into Different Parts. For Example, If We Go to an ATM and Enter a Number, We Can See that it Shows the Notes Available with it. For Example Rs 4620. We Receive the note from the ATM in - 2 notes of 2000 rupees 1 note of 500 rupees 1 note of 100 rupees 1 note of 20 rupees Number Dividing Project in Python Programming Language. Basic A.T.M. Program no=int(input("Enter Any Digit = ")) a=int(no/2000) b=no%2000 c=int(b/500) d=b%500 e=int(d/200) f=d%200 g=int(f/100) h=f%100 i=int(h/50) j=h%50 k=int(j/20) l=j%20 m=int(l/10) n=l%10 if a>=1:     print("2000 rs. note = ",a) if c>=1:     print("500 rs. note = ",c) if e>=1:     print("200 rs. note = ",e) if g>=1:     print("100 r...

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...

Gain Basic Knowledge 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. Now In this Blog, We Will Learn to What Type of Value the User has given in Python Programming Language. What Type of Value the User has given in Python Programming Language. Program i=input("Enter any Character, Number or Special-Character = \t") j=ord(i)         #Value Change in Integer Type if i>='a' and i<='z':     print("Small-Letter = ",i) elif i>='A' and i<='Z':         print("Capital-Letter = ",i) elif j>=32 and j<=47:     print("Special-Character = ",i) else:     print("Number = ",i) Output Enter any Character, Number or Special-Character = I Capital-Letter =  I ========================== Enter any Character, Number or Special-Character = f Small-Letter =  f ========================== ...

Learn Python Programming Easily

    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, We will learn about Looping Statement and its Programs in Python. What is Looping Statement in Python Programming Language. Looping Statement :-  A loop in a programming language is a statement that contains instructions that are repeated over and over again until a certain condition is reached.   When a task has to be repeated again and again then loop helps us to remove the REDUNDANCY of the code. Suppose you want to print your name five times, instead of writing the statement five times, you can use a loop. Types of Loops in Python Programming Language There are mainly two types of loops in the Python programming language. While Loop For Loop While Loop :-  In the while loop, first the condition is checked, then the statement is executed and it continues to execute until the conditi...

Easy to Learn Python Programming

   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, We will learn to make Prime Number Programs in Python Programming Language." Python Program To Check Number is Prime Or Not a Prime. Program #Prime Number Program In Python Programming Language no=int(input("Enter Any Number = \t")) count=0 if no>1:     for i in range(1,no+1):         if no%i==0:             count+=1 if count==2:     print("Prime Number = ",no) else:     print("Not a Prime Number = ",no) Output Enter Any Number = 97 Prime Number =  97 ========================== Enter Any Number = 33 Not a Prime Number =  33 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 P...

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...