Python3の標準有力を複数列で入力する方法です。
個数が2個の場合を例にしています。
s = input().split()
print(s[0])
print(s[1])
になります。文字列型とint型とデータ型が異なる場合は
s = input().split()
print(s[0])
print(int(s[1]))
になります。参考にしていただけると幸いです。
Go to list of users who liked
More than 3 years have passed since last update.
Python3の標準有力を複数列で入力する方法です。
個数が2個の場合を例にしています。
s = input().split()
print(s[0])
print(s[1])
になります。文字列型とint型とデータ型が異なる場合は
s = input().split()
print(s[0])
print(int(s[1]))
になります。参考にしていただけると幸いです。
Register as a new user and use Qiita more conveniently
Go to list of users who liked