Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Buy a domain name - Register cheap domain names from $0.99 - Namecheap

Scalable Hosting That Grows With You

Secure & Reliable Web Hosting, Free Domain, Free SSL, 1-Click WordPress Install, Expert 24/7 Support

Semrush - keyword research tool

Boost your online presence with premium web hosting and servers

Disclosure: My content contains affiliate links.

39,941 questions

51,879 answers

573 users

How to create and use tuple in Python

4 Answers

0 votes
t = ('python', 'java', 'php', 'c')

print(t)


'''
run:

('python', 'java', 'php', 'c')

'''

 



answered Oct 30, 2018 by avibootz
edited Oct 31, 2018 by avibootz
0 votes
t = ('python', 'java', 'php', 'c')

print(t[0])
print(t[1])
print(t[2])
print(t[3])


'''
run:

python
java
php
c

'''

 



answered Oct 30, 2018 by avibootz
edited Oct 31, 2018 by avibootz
0 votes
t = ('python', 'java', 'php', 'c')

for item in t:
    print(item)


'''
run:

python
java
php
c

'''

 



answered Oct 30, 2018 by avibootz
edited Oct 31, 2018 by avibootz
0 votes
t = ('python', 2, 'java', '@', 'php', 43564, 'c')

for item in t:
    print(item)


'''
run:

python
2
java
@
php
43564
c

'''

 



answered Oct 30, 2018 by avibootz
edited Oct 31, 2018 by avibootz

Related questions

2 answers 203 views
1 answer 104 views
2 answers 96 views
1 answer 102 views
1 answer 126 views
...