hi i want to ask if how i can put one line space in python 3. i use this code:
#def space():
#print()
but when i want to print it there is a "none" that prints for me but i want just a line with nothing i.e i want to type :
"hi how are you :
iam fine"
i want to have the space between "hi how are you " and "iam fine"
i give this to python3 :
print('hi how are you",space(),"iam fine")
but it will give me only:
hi how are you None iam fine ..
what is the problem here? what dose this none means?