fix ratio label

This commit is contained in:
Alexander Popov 2022-10-22 13:51:33 +03:00
parent 650517c19f
commit 6b3fec2ade
Signed by: iiiypuk
GPG Key ID: D8C9B59A9F04A70C
1 changed files with 1 additions and 1 deletions

View File

@ -13,7 +13,7 @@ def main():
exit(1)
print('Width: {0}'.format(width))
print(' 3x4 = {0}x{1}'.format(width, width * 3 / 4))
print(' 4x3 = {0}x{1}'.format(width, width * 3 / 4))
print('16x9 = {0}x{1}'.format(width, width * 9 / 16))
else:
print('Enter width value!');