0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

40歳初心者pythonでタプルを書き換えられるじゃん!

Posted at

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)

0
0
2

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?