This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| prefixes = 'JKLMNOPQ' | |
| suffix = 'ack' | |
| for letter in prefixes: | |
| if letter == 'O' or 'Q': | |
| print letter + 'u' + suffix | |
| else: | |
| print letter + suffix |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| git --version | |
| pwd | |
| git init project1 | |
| ls -al | |
| cd project1 | |
| ls -al | |
| open . | |
| which git | |