Assignment, Variables, Constants & Sequences
Inputs, Outputs & Type Conversion
Condition controlled Loops
Count Controlled loops
Nested Selection and Iteration
Subroutines 1 - Procedures
Subroutines 2 - Functions
Operators and Operations
Structured Programming
Validation and verification
String Manipulation
Good notes will help you organise and process data and information
Strings are bits of text. They can be defined as anything between quotes:
my_string = "I am a string" print(my_string)
To get a character from a string we use its index position (remember that the first character has the position 0):
my_string = "I am a string" print(my_string[4])
Create the string below :
my_word = "This is a string that contains characters"
AQA Computer Science Tutor
More String info