Hi! The same simple code runs in PyCharm and not runs in VSC. I always have this 2 errors in Problems in Output in VSC:
- Missing module docstring Pylint(C0114:missing-module-docstring) [Ln 1, Col1]
- Constant name “password” doesn’t conform to UPPER_CASE naming style [Ln 1, Col1]
“source”: “Pylint”,
password = “password123”
inputed_pass = input("Enter your pass: ")
inputed_pass = str(inputed_pass)
if inputed_pass == str(password):
print(“OK!”)
else:
print(“Access denied!!!”)
Could somebody help me whith that?