-
-
Notifications
You must be signed in to change notification settings - Fork 88
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
base: main
Are you sure you want to change the base?
Changes from 5 commits
9f69078
abb6c89
15f4549
cb9b93b
2ee678b
d32f791
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1 +1,4 @@ | ||
| node_modules | ||
| .DS_Store | ||
| .DS_Store | ||
| **/.DS_Store |
| 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) | ||
| 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) |
| 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) |
| 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
Author
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. issue fixed 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. Github doesn't agree. It is showing differences. If you do a restore to the start point of thie PR then this file shouldn't be showing up in the PR list at all.
Author
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. thank you, that's now done |
||
|
|
||
| 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: | ||
Uh oh!
There was an error while loading. Please reload this page.