- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
Physics
Chemistry
Biology
Mathematics
English
Economics
Psychology
Social Studies
Fashion Studies
Legal Studies
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
No Enclosing Delimiters in Python
Any set of multiple objects, comma-separated, written without identifying symbols, i.e., brackets for lists, parentheses for tuples, etc., default to tuples, as indicated in these short examples −
Example
#!/usr/bin/python print 'abc', -4.24e93, 18+6.6j, 'xyz'; x, y = 1, 2; print "Value of x , y : ", x,y;
Output
When the above code is executed, it produces the following result −
abc -4.24e+93 (18+6.6j) xyz Value of x , y : 1 2
- Related Articles
- Delimiters in MySQL?
- How to split strings on multiple delimiters with Python?
- How we can break a string with multiple delimiters in Python?
- Program to reverse words separated by set of delimiters in python
- How to find the minimum enclosing circle of an object in OpenCV Python?
- Smallest Rectangle Enclosing Black Pixels in C++
- Search for text between delimiters in MySQL?
- How can I use Python regex to split a string by multiple delimiters?
- How to access variables from enclosing class using lambda in Java?
- Why is there no goto in Python?
- How to Split a String with Escaped Delimiters?
- Find K-Length Substrings With No Repeated Characters in Python
- Program to find best team with no conflicts in Python
- Go Cashless – No Internet (no signal) No Problem ???
- How to use the ‘except clause’ with No Exceptions in Python?

Advertisements