Skip to main content
Search
Search This Blog
Python Developer
Python Source Code
Share
Get link
Facebook
X
Pinterest
Email
Other Apps
August 11, 2021
change tuple value
x = (
"apple"
,
"banana"
,
"cherry"
)
y =
list
(x)
y[
1
] =
"kiwi"
x =
tuple
(y)
print
(x)
Comments
Popular Posts
May 08, 2021
Birthday patterns
July 08, 2021
Block Puzzle Jewel Game in Python
Comments
Post a Comment