Pythonでの文字列入力、出力、文字列を逆向きにして出力する方法を書いています。
よろしくおねがいします。
まず、Pythonで文字列を入力する方法。
s = input()
そのまま、出力したい場合。
print(s)
文字列を逆向きにして、出力したい場合。
print(s[::-1])
以上です。
ありがとうございました。
Go to list of users who liked
More than 3 years have passed since last update.
Pythonでの文字列入力、出力、文字列を逆向きにして出力する方法を書いています。
よろしくおねがいします。
まず、Pythonで文字列を入力する方法。
s = input()
そのまま、出力したい場合。
print(s)
文字列を逆向きにして、出力したい場合。
print(s[::-1])
以上です。
ありがとうございました。
Register as a new user and use Qiita more conveniently
Go to list of users who liked