Compare commits

...

7 Commits

Author SHA1 Message Date
Haaris
2e2ca4ee5c Merge 9617317345 into 2aee46f169 2024-05-23 02:37:56 -03:00
Julien Le Coupanec
2aee46f169 Merge pull request #381 from FabricioLopees/fix/java
Update readme: fix grammatical error in java.md
2024-04-15 10:53:51 +02:00
FabricioLopees
22977d5ca1 update readme: fix grammatical error in java.md 2024-04-13 13:05:38 -03:00
FabricioLopees
a2c99c9674 update readme: fix grammatical error in java.md 2024-04-13 12:52:16 -03:00
Haaris
9617317345 added: Python Comments 2023-01-14 21:49:42 +05:30
Haaris
087d5d45a6 Update python.md 2023-01-14 21:48:23 +05:30
Haaris
96f9b643f4 added: Python Comments 2023-01-14 21:42:41 +05:30
2 changed files with 22 additions and 1 deletions

View File

@@ -286,7 +286,7 @@ for(dataType item : array) {
### ACCESS MODIFIERS ### ACCESS MODIFIERS
1. defualt(No keyword required) 1. default(No keyword required)
2. private 2. private
3. public 3. public
4. protected 4. protected

View File

@@ -125,6 +125,27 @@
| \|= | bitwise or and store| | \|= | bitwise or and store|
| , | separator as in ( y=x,z=++x )| | , | separator as in ( y=x,z=++x )|
<br>
## Comments
- Comments are very helpful to explain a Python code.
- They are used to make the code more readable.
- They never get executed.
- Comments start with # in Python.
```python
#This is a comment
print("Welcome!")
```
<br>
### Basic Data Structures ### Basic Data Structures
### List ### List