Skip to content

Commit

Permalink
Update 02conventions.ipynb.py
Browse files Browse the repository at this point in the history
Co-authored-by: Saransh Chopra <[email protected]>
  • Loading branch information
zhaohany and Saransh-cpp authored Nov 29, 2024
1 parent eff6535 commit c6e33bd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ch05construction/02conventions.ipynb.py
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ def add_to_reaction(a_name,
# ## Naming Conventions

# %% [markdown]
# [Camel case](https://en.wikipedia.org/wiki/Camel_case) is used for class names in the following example, while function and variable names follow snake_case (underscore_separation). This convention is widely used in the Python community, as stated in [PEP 8](https://pep8.org/).
# [UpperCamel case](https://en.wikipedia.org/wiki/Camel_case) is used for class names in the following example, while function and variable names follow snake_case (underscore_separation). This convention is widely used in the Python community, as stated in [PEP 8](https://pep8.org/).

# %%
class ClassName:
Expand Down

0 comments on commit c6e33bd

Please sign in to comment.