Skip to content
New issue

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

1文字ずつプリント? #50

Open
higurashi-takuto opened this issue Mar 2, 2019 · 1 comment
Open

1文字ずつプリント? #50

higurashi-takuto opened this issue Mar 2, 2019 · 1 comment

Comments

@higurashi-takuto
Copy link
Member

Code Author: @kumbikumbiSIC
Knock Number: 08
print()で1文字ずつじゃなくて、forの前に最後にまとめてprint(f'変換前: {sentence}')の方がスムーズな気がする。

print("変換前: ", end = "")
for char in sentence:
print(char, end = "")
if char.islower():
#ord()により、ある文字に対応するコードポイント(の10進数表記を得ることができる)
#chr()により、あるコードポイント(の10進数整数)から対応する文字を得ることができる
result = result + chr(219 - ord(char))
#その他
else:
result = result + char
print("") #end = "" との対応のため

@Hikaru-Morita
Copy link
Member

完全にそうですね。
ありがとうございます、修正しました。

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants