-
Hi, in exercise 2-11, after writing the f_cubic function, I got 2 errors from the pybryt check:
ERROR: You are not populating resulting vector correctly
ERROR: Hmmm... The result of your function is…
-
Hi, could you please check the result of the 4.9 cuz I really don't know what's wrong with it. I passed the test case but not for the pybryt check. I don't think I get the wrong roots for the question…
-
Hello, here is my code for 3.8
![image](https://github.com/ese-msc/introduction-to-python/assets/143718317/8514ea52-55b6-43d0-b207-afed9b9ba0b7)
(note: the commented code below it is another way …
-
I am working through the exercises on the online jupyter workbooks but keep getting the same error as seen below for all my exercises. When I test the code with the assert tests, it passes. Not sure w…
-
Hi,
I have just set up Jupyter on my local and while running the following piece of import statements, I am getting an error: **ModuleNotFoundError: No module named 'lecture'.** There is no error whi…
-
Hello!
I have started working on the first assignment on a macbook pro (early 2015).
Whilst running the very first cell, I get the error:
`ModuleNotFoundError: No module named 'pybryt'`
I have tri…
-
Can I know my mistake for my code, I could not figure it out.
-
I find the minimum data and maximum data here and print them out. They are exactly the number that I need but I am not sure why the pybryt test failed. They are exactly the numbers that are used in th…
-
here is my code:
def compute_heights(h_0=1.0, h_1=0.3, n=10):
h_list = []
for i in range(n+1):
h_list.append(h_0*0.9**i)
return h_list
I get this when running the…
-
Hi!
As seen in the screenshot, I was able to make a function that finds primes up to n (and pybryt agrees: "- SUCCESS: Your function returns the right primes."), but I can't get it to give me succe…