pythonのタプルって書き換えられないってあるけど、書き換えられました
っていうかこういう方法あるんだなぁ~ってびっくりしました
海外SNSのどっかでみつけた
l=(1,2,3,4,5)
print(l)
s1,s2,s3,s4,s5 = l
s2 = 6
l = s1,s2,s3,s4,s5
print(l)
結果
(1, 2, 3, 4, 5)
(1, 6, 3, 4, 5)
Go to list of users who liked
More than 1 year has passed since last update.
pythonのタプルって書き換えられないってあるけど、書き換えられました
っていうかこういう方法あるんだなぁ~ってびっくりしました
海外SNSのどっかでみつけた
l=(1,2,3,4,5)
print(l)
s1,s2,s3,s4,s5 = l
s2 = 6
l = s1,s2,s3,s4,s5
print(l)
結果
(1, 2, 3, 4, 5)
(1, 6, 3, 4, 5)
Register as a new user and use Qiita more conveniently
Go to list of users who liked