We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Code Author: @kumbikumbiSIC Knock Number: 11 これどのスペースのこと?
100knock/kumbikumbiSIC/11.py
Line 7 in aaf0f01
The text was updated successfully, but these errors were encountered:
すみません、説明足りてなかったです。 あと、大した話でもないです。
print("変更前:\n", lines) print("変更後:\n",l ines.replace('\t', " "))
print("変更前:\n", lines)
print("変更後:\n",l ines.replace('\t', " "))
部分なのですが、出力結果が
変更前: ○高知県 江川崎 41 2013-08-12 埼玉県 熊谷 40.9 2007-08-16 ...
変更後: ○高知県 江川崎 41 2013-08-12 埼玉県 熊谷 40.9 2007-08-16 ...
上記のようになって、高知県の前に空白が出てきて謎なんですよね。 Markdownだと空白が消えてしまっていたので○で代用しました、見にくくてすみません。
Sorry, something went wrong.
print()で複数引数で文字を表示するときスペースで区切られるから、改行までが1つめの引数だから、改行後に区切り文字のスペースがきてるって感じのはず。 例
print()
>>> print('a', 'b') a b >>> print('a\n', 'b') a b
ありがとうございます!
No branches or pull requests
Code Author: @kumbikumbiSIC
Knock Number: 11
これどのスペースのこと?
100knock/kumbikumbiSIC/11.py
Line 7 in aaf0f01
The text was updated successfully, but these errors were encountered: