generated from CodeYourFuture/Module-Template
-
-
Notifications
You must be signed in to change notification settings - Fork 42
Glasgow | 25-SDC-NOV | Katarzyna Kazimierczuk | Sprint 4 | Python shell tools #331
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
katarzynakaz
wants to merge
5
commits into
CodeYourFuture:main
Choose a base branch
from
katarzynakaz:python-shell-tools
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
5 commits
Select commit
Hold shift + click to select a range
9f69078
number systems done
katarzynakaz abb6c89
cat, ls and wc tasks compelted
katarzynakaz 15f4549
Remove tracked .DS_Store files
katarzynakaz cb9b93b
task completed
katarzynakaz 2ee678b
cat, la and wc changes done, removed other sprint work
katarzynakaz File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1 +1,4 @@ | ||
| node_modules | ||
| .DS_Store | ||
| .DS_Store | ||
| **/.DS_Store |
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,47 @@ | ||
| import sys | ||
| from pathlib import Path | ||
|
|
||
| def cleanInput(listOfFiles): | ||
| cleanLinesArr = [] | ||
|
|
||
| for file in listOfFiles: | ||
| grabbedText = Path(file).read_text(encoding="utf-8") | ||
| splitLines = grabbedText.splitlines() | ||
| cleanLinesArr.extend(splitLines) | ||
|
|
||
| return cleanLinesArr | ||
|
|
||
| def takeSpecifiedAction(cleanLinesArr, flag): | ||
| countingOnlyFullLines = 1 | ||
|
|
||
| if flag not in (None, "-n", "-b"): | ||
| print("incorrect flag") | ||
| return | ||
|
|
||
| for line in cleanLinesArr: | ||
| if not flag: | ||
| print(line) | ||
| elif flag == "-n": | ||
| print(f"{countingOnlyFullLines} {line}") | ||
| countingOnlyFullLines += 1 | ||
| elif flag == "-b": | ||
| if line == "": | ||
| print("") | ||
| else: | ||
| print(f"{countingOnlyFullLines} {line}") | ||
| countingOnlyFullLines += 1 | ||
|
|
||
|
|
||
| args = sys.argv[1:] | ||
| flag = None | ||
| restIsFiles = [] | ||
|
|
||
| if len(args) > 0 and args[0] and args[0][0] == "-": | ||
| flag = args[0] | ||
| restIsFiles = args[1:] | ||
| else: | ||
| flag = None | ||
| restIsFiles = args | ||
|
|
||
| lines = cleanInput(restIsFiles) | ||
| takeSpecifiedAction(lines, flag) | ||
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,39 @@ | ||
| import sys | ||
| import os | ||
|
|
||
| # `ls -1` | ||
| def showAllFilesInDir(directory): | ||
| listOfFiles = os.listdir(directory) | ||
|
|
||
| for eachFile in listOfFiles: | ||
| if eachFile[0] != ".": | ||
| print(eachFile) | ||
|
|
||
| # `ls -1 sample-files` | ||
| def showVisibleInSampleFiles(directory): | ||
| listOfFiles = os.listdir(directory) | ||
|
|
||
| for eachFile in listOfFiles: | ||
| if eachFile[0] != ".": | ||
| print(eachFile) | ||
|
|
||
| # `ls -1 -a sample-files` | ||
| def showAllInSampleFiles(directory): | ||
| listOfFiles = os.listdir(directory) | ||
|
|
||
| for eachFile in listOfFiles: | ||
| print(eachFile) | ||
|
|
||
| argv = sys.argv[1:] | ||
|
|
||
| show_all = "-a" in argv | ||
|
|
||
| directories = [arg for arg in argv if arg != "-a"] | ||
| if not directories: | ||
| directories = ["."] | ||
|
|
||
| for directory in directories: | ||
| if show_all: | ||
| showAllInSampleFiles(directory) | ||
| else: | ||
| showVisibleInSampleFiles(directory) |
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,26 @@ | ||
| import sys | ||
| from pathlib import Path | ||
|
|
||
| def countAll(listOfFiles, flag=None): | ||
| for file in listOfFiles: | ||
| content = Path(file).read_text(encoding="utf-8") | ||
| if flag == "-l": | ||
| print(f"{len(content.splitlines())} {file}") | ||
| elif flag == "-w": | ||
| print(f"{len(content.split())} {file}") | ||
| elif flag == "-c": | ||
| print(f"{len(content)} {file}") | ||
| else: | ||
| print(f"{len(content.splitlines())} {len(content.split())} {len(content)} {file}") | ||
|
|
||
| argv = sys.argv[1:] | ||
| files = [arg for arg in argv if not arg.startswith("-")] | ||
|
|
||
| if "-l" in argv: | ||
| countAll(files, "-l") | ||
| elif "-w" in argv: | ||
| countAll(files, "-w") | ||
| elif "-c" in argv: | ||
| countAll(files, "-c") | ||
| else: | ||
| countAll(files) |
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -5,61 +5,41 @@ Do not convert any binary numbers to decimal when solving a question unless the | |
| The goal of these exercises is for you to gain an intuition for binary numbers. Using tools to solve the problems defeats the point. | ||
|
|
||
| Convert the decimal number 14 to binary. | ||
| Answer: | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This file is not part of this sprint. You need to do a git restore of the file to get it back to the original state |
||
|
|
||
| Convert the binary number 101101 to decimal: | ||
| Answer: | ||
|
|
||
| Which is larger: 1000 or 0111? | ||
| Answer: | ||
|
|
||
| Which is larger: 00100 or 01011? | ||
| Answer: | ||
|
|
||
| What is 10101 + 01010? | ||
| Answer: | ||
|
|
||
| What is 10001 + 10001? | ||
| Answer: | ||
|
|
||
| What's the largest number you can store with 4 bits, if you want to be able to represent the number 0? | ||
| Answer: | ||
|
|
||
| How many bits would you need in order to store the numbers between 0 and 255 inclusive? | ||
| Answer: | ||
|
|
||
| How many bits would you need in order to store the numbers between 0 and 3 inclusive? | ||
| Answer: | ||
|
|
||
| How many bits would you need in order to store the numbers between 0 and 1000 inclusive? | ||
| Answer: | ||
|
|
||
| How can you test if a binary number is a power of two (e.g. 1, 2, 4, 8, 16, ...)? | ||
| Answer: | ||
|
|
||
| Convert the decimal number 14 to hex. | ||
| Answer: | ||
|
|
||
| Convert the decimal number 386 to hex. | ||
| Answer: | ||
|
|
||
| Convert the hex number 386 to decimal. | ||
| Answer: | ||
|
|
||
| Convert the hex number B to decimal. | ||
| Answer: | ||
|
|
||
| If reading the byte 0x21 as a number, what decimal number would it mean? | ||
| Answer: | ||
|
|
||
| If reading the byte 0x21 as an ASCII character, what character would it mean? | ||
| Answer: | ||
|
|
||
| If reading the byte 0x21 as a greyscale colour, as described in "Approaches for Representing Colors and Images", what colour would it mean? | ||
| Answer: | ||
|
|
||
| If reading the bytes 0xAA00FF as an RGB colour, as described in "Approaches for Representing Colors and Images", what colour would it mean? | ||
| Answer: | ||
|
|
||
| If reading the bytes 0xAA00FF as a sequence of three one-byte decimal numbers, what decimal numbers would they be? | ||
| Answer: | ||
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.