String Manipulation

Lesson Instructions

Watch and follow the YouTube video,  the lesson contains three parts:

String Manipulation Full Lesson Video.mp4

Task - String Manipulation Activity

String Manipulation Activity

Task - Exam Questions - Deliberate Practice

Exam Questions - Web

Mark Scheme

Question 1

1 mark for each correct answer

Question 2

1 mark per bullet

Example solution:

console = input(“Enter the console”)

gameName = input(“Enter the game name”)

year = input(“Enter the release year”)

gameID = console.substring(0,3) + gameName.substring(0,5) + year.right(2)

print(gameID)