Skip to content

Commit b8ad02f

Browse files
committed
python codes removed
1 parent 83f1a5e commit b8ad02f

1 file changed

Lines changed: 7 additions & 7 deletions

File tree

readMe.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1118,13 +1118,13 @@ console.log(2 < 3) // true, because 2 is less than 3
11181118
console.log(2 <= 3) // true, because 2 is less than 3
11191119
console.log(3 == 2) // false, because 3 is not equal to 2
11201120
console.log(3 != 2) // true, because 3 is not equal to 2
1121-
console.log(len('mango') == len('avocado')) // false
1122-
console.log(len('mango') != len('avocado')) // true
1123-
console.log(len('mango') < len('avocado')) // true
1124-
console.log(len('milk') != len('meat')) // false
1125-
console.log(len('milk') == len('meat')) // true
1126-
console.log(len('tomato') == len('potato')) // true
1127-
console.log(len('python') > len('dragon')) // false
1121+
console.log('mango'.length == 'avocado'.length) // false
1122+
console.log('mango'.length != 'avocado'.length) // true
1123+
console.log('mango'.length < 'avocado'.length) // true
1124+
console.log('milk'.length != 'meat'.length) // false
1125+
console.log('milk'.length == 'meat'.length) // true
1126+
console.log('tomato'.length == 'potato'.length) // true
1127+
console.log('python'.length > 'dragon'.length) // false
11281128
11291129
4 > 3;
11301130
4 >= 4;

0 commit comments

Comments
 (0)