total = 1
x = 0
while x <= 50:
if x % 2 != 0:
total *= x
x += 1
print(total)
Copyright © 2024 SCHOLAR.TIPS - All rights reserved.
Answers & Comments
total = 1
x = 0
while x <= 50:
if x % 2 != 0:
total *= x
x += 1
print(total)