python_math_stat/practica/stepik/beneficial_features/indentation.py
2023-10-04 16:07:27 +03:00

8 lines
137 B
Python

# num = 12
# print ('\t' + str(num), end="\t")
# num = 12
# print ("\t",str(num), sep='\t')
# num = 12
# print("\t" + str(num), end="")