Strings Warm Up#

Section Title: Strings Warm Up

Warm Up Question-1#

Create a string variable with the value isn't and print it.

Warm Up Question -2#

For the variable country = 'jamaica':

  • Display the character 'm' using its positive index.

  • Display the character 'i' using its negative index.

Warm Up Question-3#

Use the provided variables and f-strings to output the statement: I am in 10th grade and my Chemistry teacher is Mr. Adams.

grade, course, teacher = 10, 'Chemistry', 'Mr.Adams' 

Warm Up Question-4#

Choose a Unicode character and display it after a related sentence using its code:

Warm Up Question-5#

Display the following face.

It is a face with eyes, nose, and mouth using star characters.The eyes are represented by two 3x3 star blocks with a large space between them.The nose is a 4x3 star block positioned underneath the eyes and centered between them.The mouth is a 2x13 star block at the bottom.