## How to define FOR Loop in Python
def Kickstarter_Example_58():
print()
print(format('How to define FOR Loop in Python','*^82'))
import warnings
warnings.filterwarnings("ignore")
for i in [10, 20, 30, 40, 50]:
x = i ** 19
print(x)
else: print('All done!')
Kickstarter_Example_58()