1
0
mirror of synced 2025-12-19 18:10:59 -05:00

Add link to the community discussion for "Reusing code" (#54821)

This commit is contained in:
Sam Browning
2025-03-14 11:13:24 -04:00
committed by GitHub
parent a2ae81e57a
commit 87521dfb87

View File

@@ -180,7 +180,11 @@ result = math.factorial(number)
print(f"The factorial of {number} is {result}")
```
After you replace the existing code in your project with the above implementation, you've successfully reused code from a library in your example project!
After you replace the existing code in your project with the above implementation, you've successfully used code from a library in your example project!
## Sharing your work
With this tutorial, you've learned how to safely reuse other people's code in your own work. To celebrate, share how you repurposed code and built on the example project in our [community discussion](https://github.com/orgs/community/discussions/153140).
## Further reading