You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
There is a problem with the instructions for one of the exercises in the Beginners Python course, part 3. Specifically, the instructions say 'all the substrings which are at least three characters long' when in fact both the example and the grading indicate that what is required is strings that are EXACTLY 3 chars long. Based on the instructions, the sample outputs below should have also included: mammo, mammot, mammoth, and moth.
Find all the substrings
Please make an extended version of the previous program, which prints out all the substrings which are at least three characters long, and which begin with the character specified by the user. You may assume the input string is at least three characters long.
Sample output
Please type in a word: mammoth
Please type in a character: m
mam
mmo
mot
The text was updated successfully, but these errors were encountered:
There is a problem with the instructions for one of the exercises in the Beginners Python course, part 3. Specifically, the instructions say 'all the substrings which are at least three characters long' when in fact both the example and the grading indicate that what is required is strings that are EXACTLY 3 chars long. Based on the instructions, the sample outputs below should have also included: mammo, mammot, mammoth, and moth.
Find all the substrings
Please make an extended version of the previous program, which prints out all the substrings which are at least three characters long, and which begin with the character specified by the user. You may assume the input string is at least three characters long.
Sample output
Please type in a word: mammoth
Please type in a character: m
mam
mmo
mot
The text was updated successfully, but these errors were encountered: