Skip to content
Python For Fun
  • Home
  • Codes
    • Basic Codes
    • Turtle Codes
  • Blogs
  • Projects
  • FAQs
  • Login
  • Register
  • Contact us
  • Home
  • Codes
    • Basic Codes
    • Turtle Codes
  • Blogs
  • Projects
  • FAQs
  • Login
  • Register
  • Contact us

Basic Codes

Checking Palindrome using if-else

  • Post author:Akhila27
  • Post published:October 24, 2020
  • Post category:Basic Codes
  • Post comments:1 Comment

A Palindrome is any number or word which when reversed remains the same. For example, 12121 is a palindrome number. Similarly, "LEVEL" is a palindrome.

Continue Reading Checking Palindrome using if-else

Getting started with lists

  • Post author:Akhila27
  • Post published:October 10, 2020
  • Post category:Basic Codes
  • Post comments:0 Comments

Getting started with lists A function which defines a list and we will get an output listA function that takes the input of a list of integers and the output…

Continue Reading Getting started with lists

Fibonacci sequence using Dynamic programming

  • Post author:Padmasree
  • Post published:October 7, 2020
  • Post category:Basic Codes
  • Post comments:0 Comments

Fibonacci sequence using Dynamic programming Welcome to Python for fun! Here is the code to find the Fibonacci sequence using dynamic programming.Fibonacci sequence is a series of numbers formed by…

Continue Reading Fibonacci sequence using Dynamic programming

Playing with Strings and Characters

  • Post author:Akhila27
  • Post published:October 2, 2020
  • Post category:Basic Codes
  • Post comments:0 Comments

Playing with Strings and Characters Deleting all the occurrences of the given single length character from the given string Here, we are using functions to delete all the occurrences of…

Continue Reading Playing with Strings and Characters

To find the factorial using functions

  • Post author:Akhila27
  • Post published:September 30, 2020
  • Post category:Basic Codes
  • Post comments:0 Comments

Factorial of a number To find the factorial of a given number by defining a functionA factorial is the product of all the integers from 1 to that number.n!=n*(n-1).....*1In this…

Continue Reading To find the factorial using functions

Displaying Multiplication Table

  • Post author:Harshit
  • Post published:September 13, 2020
  • Post category:Basic Codes
  • Post comments:0 Comments

Displaying a Multiplication Table A code to display the Multiplication Table of a specific number.Welcome to the code! This code is for all the geeks out there who love to…

Continue Reading Displaying Multiplication Table
  • Go to the previous page
  • 1
  • 2
  • 3
  • 4
  • 5
  • Go to the next page
©2020 - All Rights Reserved. Python for fun.