c9-python-getting-started/more-python-for-beginners/01 - Formatting and linting/bad.py

12 строки
146 B
Python

x = 12
if x == 24:
print('Is valid')
else:
print("Not valid")
def helper(name='sample'):
pass
def another(name = 'sample'):
pass