<?xml version="1.0" encoding="UTF-8"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom" version="2.0"><channel><title><![CDATA[RSS Feed]]></title><description><![CDATA[RSS Feed]]></description><link>http://direct.ecency.com</link><image><url>http://direct.ecency.com/logo512.png</url><title>RSS Feed</title><link>http://direct.ecency.com</link></image><generator>RSS for Node</generator><lastBuildDate>Sat, 04 Apr 2026 07:33:46 GMT</lastBuildDate><atom:link href="http://direct.ecency.com/created/python-dev/rss.xml" rel="self" type="application/rss+xml"/><item><title><![CDATA[Python Program to Sort Words in Alphabetic Order]]></title><description><![CDATA[# Program to sort alphabetically the words form a string provided by the user my_str = "Hello this Is an Example With cased letters" # To take input from the user #my_str = input("Enter]]></description><link>http://direct.ecency.com/python-dev/@python-dev/python-program-to-sort-words-in-alphabetic-order</link><guid isPermaLink="true">http://direct.ecency.com/python-dev/@python-dev/python-program-to-sort-words-in-alphabetic-order</guid><category><![CDATA[python-dev]]></category><dc:creator><![CDATA[python-dev]]></dc:creator><pubDate>Sun, 22 Mar 2020 11:59:06 GMT</pubDate></item><item><title><![CDATA[Python Program to Check Whether a String is Palindrome or Not]]></title><description><![CDATA[# Program to check if a string is palindrome or not my_str = 'aIbohPhoBiA' # make it suitable for caseless comparison my_str = my_str.casefold() # reverse the string rev_str = reversed(my_str) # check]]></description><link>http://direct.ecency.com/python-dev/@python-dev/python-program-to-check-whether-a-string-is-palindrome-or-not</link><guid isPermaLink="true">http://direct.ecency.com/python-dev/@python-dev/python-program-to-check-whether-a-string-is-palindrome-or-not</guid><category><![CDATA[python-dev]]></category><dc:creator><![CDATA[python-dev]]></dc:creator><pubDate>Sun, 22 Mar 2020 11:46:51 GMT</pubDate></item><item><title><![CDATA[Python Program to Multiply Two Matrices]]></title><description><![CDATA[# Program to multiply two matrices using nested loops # 3x3 matrix X = [[12,7,3], [4 ,5,6], [7 ,8,9]] # 3x4 matrix Y = [[5,8,1,2], [6,7,3,0], [4,5,9,1]] # result is 3x4 result = [[0,0,0,0], [0,0,0,0],]]></description><link>http://direct.ecency.com/python-dev/@python-dev/python-program-to-multiply-two-matrices</link><guid isPermaLink="true">http://direct.ecency.com/python-dev/@python-dev/python-program-to-multiply-two-matrices</guid><category><![CDATA[python-dev]]></category><dc:creator><![CDATA[python-dev]]></dc:creator><pubDate>Sun, 22 Mar 2020 11:40:12 GMT</pubDate></item><item><title><![CDATA[Python Program to Transpose a Matrix]]></title><description><![CDATA[# Program to transpose a matrix using a nested loop X = [[12,7], [4 ,5], [3 ,8]] result = [[0,0,0], [0,0,0]] # iterate through rows for i in range(len(X)): # iterate through columns for j in range(len(X[0])):]]></description><link>http://direct.ecency.com/python-dev/@python-dev/python-program-to-transpose-a-matrix</link><guid isPermaLink="true">http://direct.ecency.com/python-dev/@python-dev/python-program-to-transpose-a-matrix</guid><category><![CDATA[python-dev]]></category><dc:creator><![CDATA[python-dev]]></dc:creator><pubDate>Sun, 22 Mar 2020 11:34:12 GMT</pubDate></item><item><title><![CDATA[Python Program to Add Two Matrices]]></title><description><![CDATA[# Program to add two matrices using nested loop X = [[12,7,3], [4 ,5,6], [7 ,8,9]] Y = [[5,8,1], [6,7,3], [4,5,9]] result = [[0,0,0], [0,0,0], [0,0,0]] # iterate through rows for i in range(len(X)): #]]></description><link>http://direct.ecency.com/python-dev/@python-dev/python-program-to-add-two-matrices</link><guid isPermaLink="true">http://direct.ecency.com/python-dev/@python-dev/python-program-to-add-two-matrices</guid><category><![CDATA[python-dev]]></category><dc:creator><![CDATA[python-dev]]></dc:creator><pubDate>Sun, 22 Mar 2020 11:28:12 GMT</pubDate></item><item><title><![CDATA[Python Program to Display Fibonacci Sequence Using Recursion]]></title><description><![CDATA[# Python program to display the Fibonacci sequence def recur_fibo(n): if n <= 1: return n else: return(recur_fibo(n-1) + recur_fibo(n-2)) nterms = 10 # check if the number of terms is valid if nterms]]></description><link>http://direct.ecency.com/python-dev/@python-dev/python-program-to-display-fibonacci-sequence-using-recursion</link><guid isPermaLink="true">http://direct.ecency.com/python-dev/@python-dev/python-program-to-display-fibonacci-sequence-using-recursion</guid><category><![CDATA[python-dev]]></category><dc:creator><![CDATA[python-dev]]></dc:creator><pubDate>Sun, 22 Mar 2020 11:22:06 GMT</pubDate></item><item><title><![CDATA[Python Program to Display Calendar]]></title><description><![CDATA[# Program to display calendar of the given month and year # importing calendar module import calendar yy = 2014 # year mm = 11 # month # To take month and year input from the user # yy = int(input("Enter]]></description><link>http://direct.ecency.com/python-dev/@python-dev/python-program-to-display-calendar</link><guid isPermaLink="true">http://direct.ecency.com/python-dev/@python-dev/python-program-to-display-calendar</guid><category><![CDATA[python-dev]]></category><dc:creator><![CDATA[python-dev]]></dc:creator><pubDate>Sun, 22 Mar 2020 11:15:15 GMT</pubDate></item><item><title><![CDATA[Python Program to Shuffle Deck of Cards]]></title><description><![CDATA[# Python program to shuffle a deck of card # importing modules import itertools, random # make a deck of cards deck = list(itertools.product(range(1,14),['Spade','Heart','Diamond','Club'])) # shuffle the]]></description><link>http://direct.ecency.com/python-dev/@python-dev/python-program-to-shuffle-deck-of-cards</link><guid isPermaLink="true">http://direct.ecency.com/python-dev/@python-dev/python-program-to-shuffle-deck-of-cards</guid><category><![CDATA[python-dev]]></category><dc:creator><![CDATA[python-dev]]></dc:creator><pubDate>Sun, 22 Mar 2020 11:08:36 GMT</pubDate></item><item><title><![CDATA[Python Program to Make a Simple Calculator]]></title><description><![CDATA[# Program make a simple calculator # This function adds two numbers def add(x, y): return x + y # This function subtracts two numbers def subtract(x, y): return x - y # This function multiplies two numbers]]></description><link>http://direct.ecency.com/python-dev/@python-dev/python-program-to-make-a-simple-calculator</link><guid isPermaLink="true">http://direct.ecency.com/python-dev/@python-dev/python-program-to-make-a-simple-calculator</guid><category><![CDATA[python-dev]]></category><dc:creator><![CDATA[python-dev]]></dc:creator><pubDate>Sun, 22 Mar 2020 11:02:39 GMT</pubDate></item><item><title><![CDATA[Python Program to Find the Factors of a Number]]></title><description><![CDATA[# Python Program to find the factors of a number # This function computes the factor of the argument passed def print_factors(x): print("The factors of",x,"are:") for i in range(1,]]></description><link>http://direct.ecency.com/python-dev/@python-dev/python-program-to-find-the-factors-of-a-number</link><guid isPermaLink="true">http://direct.ecency.com/python-dev/@python-dev/python-program-to-find-the-factors-of-a-number</guid><category><![CDATA[python-dev]]></category><dc:creator><![CDATA[python-dev]]></dc:creator><pubDate>Sun, 22 Mar 2020 10:55:39 GMT</pubDate></item><item><title><![CDATA[Python Program to Find LCM]]></title><description><![CDATA[# Python Program to find the L.C.M. of two input number def compute_lcm(x, y): # choose the greater number if x > y: greater = x else: greater = y while(True): if((greater % x == 0) and (greater % y]]></description><link>http://direct.ecency.com/python-dev/@python-dev/python-program-to-find-lcm</link><guid isPermaLink="true">http://direct.ecency.com/python-dev/@python-dev/python-program-to-find-lcm</guid><category><![CDATA[python-dev]]></category><dc:creator><![CDATA[python-dev]]></dc:creator><pubDate>Sun, 22 Mar 2020 10:49:39 GMT</pubDate></item><item><title><![CDATA[Python Program to Find HCF or GCD]]></title><description><![CDATA[# Python program to find H.C.F of two numbers # define a function def compute_hcf(x, y): # choose the smaller number if x > y: smaller = y else: smaller = x for i in range(1, smaller+1): if((x % i ==]]></description><link>http://direct.ecency.com/python-dev/@python-dev/python-program-to-find-hcf-or-gcd</link><guid isPermaLink="true">http://direct.ecency.com/python-dev/@python-dev/python-program-to-find-hcf-or-gcd</guid><category><![CDATA[python-dev]]></category><dc:creator><![CDATA[python-dev]]></dc:creator><pubDate>Sun, 22 Mar 2020 10:43:21 GMT</pubDate></item><item><title><![CDATA[Python Program to Find ASCII Value of Character]]></title><description><![CDATA[# Program to find the ASCII value of the given character c = 'p' print("The ASCII value of '" + c + "' is", ord(c))]]></description><link>http://direct.ecency.com/python-dev/@python-dev/python-program-to-find-ascii-value-of-character</link><guid isPermaLink="true">http://direct.ecency.com/python-dev/@python-dev/python-program-to-find-ascii-value-of-character</guid><category><![CDATA[python-dev]]></category><dc:creator><![CDATA[python-dev]]></dc:creator><pubDate>Sun, 22 Mar 2020 10:37:24 GMT</pubDate></item><item><title><![CDATA[Python Program to Convert Decimal to Binary, Octal and Hexadecimal]]></title><description><![CDATA[# Python program to convert decimal into other number systems dec = 344 print("The decimal value of", dec, "is:") print(bin(dec), "in binary.") print(oct(dec), "in]]></description><link>http://direct.ecency.com/python-dev/@python-dev/python-program-to-convert-decimal-to-binary-octal-and-hexadecimal</link><guid isPermaLink="true">http://direct.ecency.com/python-dev/@python-dev/python-program-to-convert-decimal-to-binary-octal-and-hexadecimal</guid><category><![CDATA[python-dev]]></category><dc:creator><![CDATA[python-dev]]></dc:creator><pubDate>Sun, 22 Mar 2020 10:31:27 GMT</pubDate></item><item><title><![CDATA[Python Program to Find Numbers Divisible by Another Number]]></title><description><![CDATA[# Take a list of numbers my_list = [12, 65, 54, 39, 102, 339, 221,] # use anonymous function to filter result = list(filter(lambda x: (x % 13 == 0), my_list)) # display the result print("Numbers divisible]]></description><link>http://direct.ecency.com/python-dev/@python-dev/python-program-to-find-numbers-divisible-by-another-number</link><guid isPermaLink="true">http://direct.ecency.com/python-dev/@python-dev/python-program-to-find-numbers-divisible-by-another-number</guid><category><![CDATA[python-dev]]></category><dc:creator><![CDATA[python-dev]]></dc:creator><pubDate>Sun, 22 Mar 2020 10:25:30 GMT</pubDate></item><item><title><![CDATA[Python Program to Find Armstrong Number in an Interval]]></title><description><![CDATA[# Program to check Armstrong numbers in a certain interval lower = 100 upper = 2000 for num in range(lower, upper + 1): # order of number order = len(str(num)) # initialize sum sum = 0 temp = num while]]></description><link>http://direct.ecency.com/python-dev/@python-dev/python-program-to-find-armstrong-number-in-an-interval</link><guid isPermaLink="true">http://direct.ecency.com/python-dev/@python-dev/python-program-to-find-armstrong-number-in-an-interval</guid><category><![CDATA[python-dev]]></category><dc:creator><![CDATA[python-dev]]></dc:creator><pubDate>Sun, 22 Mar 2020 10:19:33 GMT</pubDate></item><item><title><![CDATA[Python Program to Check Armstrong Number]]></title><description><![CDATA[# Python program to check if the number is an Armstrong number or not # take input from the user num = int(input("Enter a number: ")) # initialize sum sum = 0 # find the sum of the cube of each]]></description><link>http://direct.ecency.com/python-dev/@python-dev/python-program-to-check-armstrong-number</link><guid isPermaLink="true">http://direct.ecency.com/python-dev/@python-dev/python-program-to-check-armstrong-number</guid><category><![CDATA[python-dev]]></category><dc:creator><![CDATA[python-dev]]></dc:creator><pubDate>Sun, 22 Mar 2020 10:13:18 GMT</pubDate></item><item><title><![CDATA[Python Program to Print the Fibonacci sequence]]></title><description><![CDATA[# Program to display the Fibonacci sequence up to n-th term nterms = int(input("How many terms? ")) # first two terms n1, n2 = 0, 1 count = 0 # check if the number of terms is valid if nterms]]></description><link>http://direct.ecency.com/python-dev/@python-dev/python-program-to-print-the-fibonacci-sequence</link><guid isPermaLink="true">http://direct.ecency.com/python-dev/@python-dev/python-program-to-print-the-fibonacci-sequence</guid><category><![CDATA[python-dev]]></category><dc:creator><![CDATA[python-dev]]></dc:creator><pubDate>Sun, 22 Mar 2020 10:07:09 GMT</pubDate></item><item><title><![CDATA[Python Program to Display the multiplication Table]]></title><description><![CDATA[# Multiplication table (from 1 to 10) in Python num = 12 # To take input from the user # num = int(input("Display multiplication table of? ")) # Iterate 10 times from i = 1 to 10 for i in range(1,]]></description><link>http://direct.ecency.com/python-dev/@python-dev/python-program-to-display-the-multiplication-table</link><guid isPermaLink="true">http://direct.ecency.com/python-dev/@python-dev/python-program-to-display-the-multiplication-table</guid><category><![CDATA[python-dev]]></category><dc:creator><![CDATA[python-dev]]></dc:creator><pubDate>Sun, 22 Mar 2020 10:01:12 GMT</pubDate></item><item><title><![CDATA[Python Program to Find the Factorial of a Number]]></title><description><![CDATA[# Python program to find the factorial of a number provided by the user. # change the value for a different result num = 7 # To take input from the user #num = int(input("Enter a number: "))]]></description><link>http://direct.ecency.com/python-dev/@python-dev/python-program-to-find-the-factorial-of-a-number</link><guid isPermaLink="true">http://direct.ecency.com/python-dev/@python-dev/python-program-to-find-the-factorial-of-a-number</guid><category><![CDATA[python-dev]]></category><dc:creator><![CDATA[python-dev]]></dc:creator><pubDate>Sun, 22 Mar 2020 09:54:42 GMT</pubDate></item></channel></rss>