Here, you'll find a collection of simple Python problems and exercises covering various topics such as basic calculations, string manipulation, lists and loops, conditional statements, file handling, and more.
File: simpleProblems.py :
Calculate the area of a rectangle given its length and width.
Perform basic string manipulations such as concatenation, slicing, and reversing.
Explore the use of lists and loops to perform operations like finding the sum, average, and maximum value in a list.
Practice conditional statements by solving problems like determining if a number is even or odd.
Read from and write/append content to files, deleting and creating the files, demonstrating basic file handling and manipulation.
Find the sum of even numbers in a given range.
The Rock, Paper, Scissors project is a simple game where the computer randomly selects rock, paper, or scissors, and the user chooses one as well. The winner is determined based on the rules of the game.
File: rock-paper-scissors.py
##Clock Timer Project
###Description
The Clock Timer Project is a simple timer I made, it counts down in seconds that have been input by the user.
File: Clock_Timer