import pandas as pd
import numpy as np
The preferred way of wrapping long lines is by using Python's implied line continuation inside parentheses, brackets and braces.
def print_something():
print ('Look at us,',
'printing this sentence on multiple lines.')
print_something()
#now 'age' will appear at the end of our df
z=99
if z <100 or \
z > 0:
print('True')