How to create a tuple with one element in Python

2 Answers

0 votes
tpl1 = ("python",)  
print(tpl1)      
print(type(tpl1))

tpl2 = "java",  
print(tpl2)      
print(type(tpl2)) 
 
 
 
'''
run:
  
('python',)
<class 'tuple'>
('java',)
<class 'tuple'>
 
'''

 



answered Feb 10, 2020 by avibootz
edited Jul 25, 2022 by avibootz
0 votes
tpl = (837, )

print(tpl)  

print(type(tpl))
  
  
  
  
'''
run:
  
(837,)
<class 'tuple'>
  
'''

 



answered Jul 25, 2022 by avibootz
...