gibberish = 'absdqwjbasdbqwlabcdefghijklmnopqrstuvwxyz'
# use str.find() to find the alphabet
index =
# use slicing str[:] to extract the alphabet
alphabet =
print(alphabet)
Python
Setting up Python environment...
Output
gibberish = 'absdqwjbasdbqwlabcdefghijklmnopqrstuvwxyz'
# use str.find() to find the alphabet
index =
# use slicing str[:] to extract the alphabet
alphabet =
print(alphabet)
Setting up Python environment...