2021-06-11から1日間の記事一覧

python print文の使い方

■入力した文字を出力 print('hello world') -------------------------- hello world ■カンマ区切りで、複数出力 ※出力は半角スペース区切りになる print('aaa','bbb') -------------------------- aaa bbb ■複数個printを書くと改行して出力される print('a…