Skip to content

Commit 183d891

Browse files
committed
Checking for pylint
1 parent c0b1621 commit 183d891

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

0001-Pilot-HelloWorld/0001_hello_world.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22

33
message = "Hello World!"
44

5-
print(message)
5+
print(message)

0002-Case-Conversions/0002_case_conversions.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,4 @@
66

77
print("Lower case: "+ message.lower())
88

9-
print("Upper case: "+ message.upper())
9+
print("Upper case: "+ message.upper())
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# 0003-regex-findall.py
1+
# 0003_regex_findall.py
22

33
import re
44
text = "The rain in happening in India"
@@ -7,4 +7,4 @@
77

88
text = "The rain in happening in India and Ireland"
99
result = re.findall(r"\bI\w+", text)
10-
print(result)
10+
print(result)

0003-Regular Expressions-FindAll/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# 0003-regex-findall.py
1+
# 0003_regex_findall.py
22

33
This script demonstrates the use of Python's `re.findall()` function to find all words in a given text that start with the letter "I".
44

0 commit comments

Comments
 (0)