CMSC 201

Lab 11: Strings

Introduction

Welcome to lab!

For this lab, we're going to learn to work with strings.

The functions you will need:

  1. ord(someChar) - turns a character into its ascii value.
  2. chr(someInt) - turns an ascii value into a character.