SubhanUllah Posted October 20, 2022 Report Posted October 20, 2022 thelist = ["Hello", "World", "How", "Are", "You"] print(len(thelist)) #OUTPUT 5 thetuple = tuple(thelist) print(thetuple) #OUTPUT ('Hello', 'World', 'How', 'Are', 'You') print(len(thetuple)) #OUTPUT 5 Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.