We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b46b92a commit 71c7c0bCopy full SHA for 71c7c0b
strings/barcode_validator.py
@@ -83,6 +83,6 @@ def get_barcode(barcode: str) -> int:
83
barcode = get_barcode(input("Barcode: ").strip())
84
85
if is_valid(barcode):
86
- print(f"'{barcode}' is a valid Barcode")
+ print(f"'{barcode}' is a valid barcode.")
87
else:
88
- print(f"'{barcode}' is NOT is valid Barcode.")
+ print(f"'{barcode}' is NOT a valid barcode.")
0 commit comments