Py Basics, Operators, and Functions

Score: 0 / 20.0


Exercises

0 / 5.0

Complete the following function. When given aString, return True if it ends in "ly". Return False otherwise.

0 / 5.0

Complete the following function. Given aString, return the first half of characters in that string (the string "woohoo" yields "woo")....

0 / 5.0

Given an outside string of length 4, such as "(())", and an inside string, return a new string where the inside is squeezed in the middle...

0 / 5.0

Complete the following function. Given aString, return a copy of aString where any character next to a star (*) and all stars themselves...