Connect to GitHub to push and pull your project files to a repository.
On the page that opens, create a token with repo scope, copy it, then paste it below.
Paste the personal access token you created on GitHub with repo scope.
Click Refresh to load commit history
Exercise Info
Goals
To use slicing notation in python
To apply string concatenation in python
Instructions
One thing I find myself doing all the time is converting formats of multimedia data with python scripts. Part of this is just getting the file paths correct. Let's say I wanted to convert an image file with a .jpg format to a .png format. Write the code comes up with the correct .png target filename using string slices and string concatenation. Hint: You can use a negative index as the end of a slice.