module 'src.triple_square' from '/app/src/triple_square.py'> does not have the attribute 'triple#7
Open
martes-53 wants to merge 62 commits intojttoivon:masterfrom
Open
module 'src.triple_square' from '/app/src/triple_square.py'> does not have the attribute 'triple#7martes-53 wants to merge 62 commits intojttoivon:masterfrom
martes-53 wants to merge 62 commits intojttoivon:masterfrom
Conversation
…the sith deal in absolutes
Updated link to exercise page (TMC)
Mentioned certificate and difference between 4 cu and 5 cu version.
Added additional parens to np.zeros
Fixed incorrect code in 03_12 example
Fix telegram link
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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
I don't understand the error message as in title. I'm only in exercise part01-e06_triple_square.
def main():
pass
def square(i):
"square raises its parameter to the power of two"
return ii
def triple(i):
'triple multiplies its parameter by three'
return 3i
#
for i in [1,2,3,4,5,6,7,8,9,10]:
t=triple(i)
s=square(i)
if s>t:
break
print(f"triple({i})=={t} square({i})=={s}")
if name == "main":
main()
The code executes as expected, but when tested with tmc test, error as follows is shown:
Testing: part01-e06_triple_square
Failed: test.test_triple_square.TripleSquare.test_calls
<module 'src.triple_square' from 'C:\Users\admin\Documents\DataA\hy-data-analysis-with-python-summer-2019\part01-e06_triple_square\src\triple_square.py'> does not have the attribute 'square'
Failed: test.test_triple_square.TripleSquare.test_calls2
<module 'src.triple_square' from 'C:\Users\admin\Documents\DataA\hy-data-analysis-with-python-summer-2019\part01-e06_triple_square\src\triple_square.py'> does not have the attribute 'square'
Test results: 0/2 tests passed
0%[░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░]
How can I fix the code?