Python - Videos and Questions

23 / 78

Python - String Operations

In Python there are several String Operations. The * operator can be used to repeat a string multiple times and form a larger string. For eg. to repeat the string game, 5 times and store it in a variable called games use games = "game" * 5

INSTRUCTIONS
  • Define a variable called animal with a value of cat.
  • Using string operations define another variable called ten_animals having 10 times the string stored in animal


Note - Having trouble with the assessment engine? Follow the steps listed here

Loading comments...