args = [1, 2, 3]
kwargs = {'sep': '?', 'end': '*'}
print(*arg, **kwargs)
出力
1?2?3*
Go to list of users who liked
More than 1 year has passed since last update.
args = [1, 2, 3]
kwargs = {'sep': '?', 'end': '*'}
print(*arg, **kwargs)
出力
1?2?3*
Register as a new user and use Qiita more conveniently
Go to list of users who liked