0% found this document useful (0 votes)
3 views1 page

Python Lab Manual

The document is a Python lab manual containing three programming exercises. The first program requires writing a recursive function to find the factorial of a number, the second program involves creating a simple calculator using functions, and the third program checks if a string is a palindrome. Each program section includes a placeholder for the code implementation.

Uploaded by

inbox.ayesha1989
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
3 views1 page

Python Lab Manual

The document is a Python lab manual containing three programming exercises. The first program requires writing a recursive function to find the factorial of a number, the second program involves creating a simple calculator using functions, and the third program checks if a string is a palindrome. Each program section includes a placeholder for the code implementation.

Uploaded by

inbox.ayesha1989
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 1

Python Lab Manual

Program 1
Write a Python program to find the factorial of a number using recursion.

Code:

// Write your code here...

Program 2
Write a Python program to implement a simple calculator using functions.

Code:

// Write your code here...

Program 3
Write a Python program to check if a string is a palindrome.

Code:

// Write your code here...

You might also like