-
Notifications
You must be signed in to change notification settings - Fork 35
Done #27
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
SilviArk
wants to merge
5
commits into
nathanielpolley:master
Choose a base branch
from
SilviArk:master
base: master
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
Done #27
Changes from all commits
Commits
Show all changes
5 commits
Select commit
Hold shift + click to select a range
b7fceb9
My first commit
SilviArk 377e374
Merge branch 'nathanielpolley:master' into master
SilviArk 02cdd2b
I complete the exercise
SilviArk 756f519
Merge branch 'nathanielpolley:master' into master
SilviArk 2fdaed0
I complete the exercise Yuppiii
SilviArk 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,23 @@ | ||
| #YOUR CODE FOR EX_0 ADVANCED HERE | ||
| # | ||
| import math | ||
| DNAseq = input("Enter DNA sequence") | ||
| DNAseq = DNAseq.upper() | ||
|
|
||
| if any(words not in "ATGC" for words in DNAseq): | ||
| print("wrong sequence") | ||
| else: | ||
| lenght = len(DNAseq) | ||
| A = DNAseq.count('A') | ||
| C = DNAseq.count('C') | ||
| G = DNAseq.count('G') | ||
| T = DNAseq.count('T') | ||
| GC = G + C | ||
| GCratio = GC / lenght | ||
| GCpercent = GCratio * 100 | ||
| print(f"The lenght is: {lenght}") | ||
| print(f"adenine is: {A}") | ||
| print(f"cytosine is: {C}") | ||
| print(f"guanine is: {G}") | ||
| print(f"thymine is: {T}") | ||
| print(f"GC content is: {GCpercent}") | ||
|
|
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,5 +1,6 @@ | ||
| import this | ||
|
|
||
| print("\n"+"TYPE YOUR RESPONSE TO PROMPT 1 HERE") | ||
| print("\n"+"I am Silvia, research engineer in CRCT. I try to learn Python to easly analyse and visualise data") | ||
|
|
||
| print("\n"+"Long time ago") | ||
|
|
||
| print("\n"+"TYPE YOUR RESPONSE TO PROMPT 2 HERE") |
|
Owner
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. Very good implementation as we practiced. Score: 0.5/0.5 |
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,25 @@ | ||
| Copy and paste output of ex_0_beginner_runfile.py below: | ||
| Beautiful is better than ugly. | ||
| Explicit is better than implicit. | ||
| Simple is better than complex. | ||
| Complex is better than complicated. | ||
| Flat is better than nested. | ||
| Sparse is better than dense. | ||
| Readability counts. | ||
| Special cases aren't special enough to break the rules. | ||
| Although practicality beats purity. | ||
| Errors should never pass silently. | ||
| Unless explicitly silenced. | ||
| In the face of ambiguity, refuse the temptation to guess. | ||
| There should be one-- and preferably only one --obvious way to do it. | ||
| Although that way may not be obvious at first unless you're Dutch. | ||
| Now is better than never. | ||
| Although never is often better than *right* now. | ||
| If the implementation is hard to explain, it's a bad idea. | ||
| If the implementation is easy to explain, it may be a good idea. | ||
| Namespaces are one honking great idea -- let's do more of those! | ||
|
|
||
| I am Silvia, research engineer in CRCT. I try to learn Python to easly analyse and visualise data | ||
|
|
||
| Long time ago | ||
|
|
||
|
|
|
Owner
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. Excellent work! Score: 1.5/1.5 |
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,14 @@ | ||
| #YOUR CODE FOR EX_0 INTERMEDIATE HERE | ||
| # | ||
| import math | ||
| initialcount = input("Enter the initial count: ") | ||
| finalcount = input("Enter the final count:") | ||
| time = input("Enter the time:") | ||
| if initialcount.isdigit() and finalcount.isdigit() and time.isdigit(): | ||
| if (int(finalcount) > int(initialcount)): | ||
| GrowthRate = math.log(int(finalcount)) - math.log(int(initialcount)) / int(time) | ||
| print(GrowthRate) | ||
| else: | ||
| print("invalid input") | ||
| else: | ||
| print("invalid input") | ||
|
|
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Excellent work, Silvia! All user input is handled correctly, and your code produces the correct output.
Score: 2/2