4.2 組み込み関数の使い方
4.2-1 print関数
printの構文 print(*objects, sep=' ', end="\n", file=sys.stdout, flash=False)
print("hello")
->表示して改行
print("hello", end="")
->表示して改行されない
a = 123
b = 456
c = 789
print(a, b, c)
->123 456 789
print(a, b, c, sep=",")
->123,456,789
print(a, b, c, sep="")
->123456789