Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions Programs/P01_hello.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ def justPrint(text):
print("Multiply value is:", multiply_value)
print("Modulus:", increment_value % base_value ) # % -> remainder
print('Addition is:', int(a) + int(b))
print("All the arthemitic operations are covered")
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Critical Confidence Score: 100% View Citation

Spelling Error in String Literal

The word 'arthemitic' is misspelled. Correcting it to 'arithmetic' improves the professionalism and readability of the output messages.

Suggested change
print("All the arthemitic operations are covered")
print("All the arithmetic operations are covered")


if __name__ == '__main__':
justPrint('Hello Sindhuja')
Expand Down
Loading