mirror of
https://github.com/TheAlgorithms/Python.git
synced 2025-01-30 22:23:42 +00:00
Updated a typo in print statement (#7696)
* Updated a typo in print statement * Apply suggestions from code review Co-authored-by: Caeden Perelli-Harris <caedenperelliharris@gmail.com> Co-authored-by: Christian Clauss <cclauss@me.com> Co-authored-by: Caeden Perelli-Harris <caedenperelliharris@gmail.com>
This commit is contained in:
parent
b46b92a916
commit
71c7c0bd35
|
@ -83,6 +83,6 @@ if __name__ == "__main__":
|
||||||
barcode = get_barcode(input("Barcode: ").strip())
|
barcode = get_barcode(input("Barcode: ").strip())
|
||||||
|
|
||||||
if is_valid(barcode):
|
if is_valid(barcode):
|
||||||
print(f"'{barcode}' is a valid Barcode")
|
print(f"'{barcode}' is a valid barcode.")
|
||||||
else:
|
else:
|
||||||
print(f"'{barcode}' is NOT is valid Barcode.")
|
print(f"'{barcode}' is NOT a valid barcode.")
|
||||||
|
|
Loading…
Reference in New Issue
Block a user