Scratch Challenges – Level 1
Scratch
Scratch Challenges – Level 1 Read More »
Password Generator For this challenge, we will use a Python script to generate a random password of 8 characters. Each time the program is run, a new password will be generated randomly. The passwords generated will be 8 characters long and will have to include the following characters in any order: To solve this challenge
Password Generator Read More »
Rock paper Scissors Create a new file, rps.py. Then enter the following: Experienced programmers will be very quick to point out that there are better ways to write a “Rock, Paper, Scissors” Python game. But, for a beginner, it’s very important to be able to understand and follow the program. Let’s break it down… First,
Rock paper Scissors Read More »
Basic Guessing Game Today we are going to make an interactive guessing game in Python. This is going to be a simple guessing game where the computer will generate a random number between 1 to 10, and the user has to guess it in 5 attempts. Based on the user’s guess computer will give various
Basic Guessing Game Read More »
Scoring Your game needs to keep score. For the more advanced programmer, you can keep a high score using Cloud variables Scoring High Score
Levels Your game needs to have at least TWO levels
Scratch – Game Levels Read More »
Introduction, Instruction and Ending screens Before you start build your game you need to create a game template which has Introduction Screen – which lets the user start the game or get instructions Instruction Screen – with details about how to play the game Ending Screen – The screen the player sees when the game
Scratch – Game Framework Read More »
Introduction: to Flowcharts A flowchart is a visual map of an algorithm. Instead of writing a wall of text, we use specific shapes to show exactly what is happening at every step. Flowchart Components Shape Name What it does Example Oval TerminatorStart / End The “Terminator.” It shows where the logic begins and where it
Flow Charts – Level 1 Read More »
The flowcharts are simple visual tools that help us understand and represent processes very easily. They use shapes like arrows, rectangles, and diamonds to show steps and decisions clearly. If someone is making a project or explaining a complex task, flowcharts can make complex ideas easier to understand. Table of Content What are Flowcharts? Flowcharts
Flow Charts – Level 2 Read More »