CARVIEW |
Select Language
HTTP/2 200
content-type: text/html; charset=utf-8
date: Wed, 15 Oct 2025 02:17:23 GMT
permissions-policy: interest-cohort=()
strict-transport-security: max-age=31536000; includeSubDomains
server: nginx
cache-control: s-maxage=53759, max-age=0
x-powered-by: Next.js
etag: "yquimt6j1a7saw"
content-encoding: gzip
x-xss-protection: 1; mode=block
x-content-type-options: nosniff
referrer-policy: no-referrer-when-downgrade
content-security-policy: default-src 'self' http: https: ws: wss: data: blob: 'unsafe-eval' 'unsafe-inline'; frame-ancestors 'self';
vary: Accept-Encoding
x-cache: Miss from cloudfront
via: 1.1 98d0559864f73df6f6a82beaacdff652.cloudfront.net (CloudFront)
x-amz-cf-pop: BOM78-P9
x-amz-cf-id: 2o1vYvYqY9per6B_fxg6LZ_eZO0DVrz52xGX4yKqOM5aNVeCiPyhbA==
Python Foundation | Variables and Datatypes Question 8
Interview Preparation
- Interview Preparation For Software Developers
- Must Coding Questions - Company-wise
- Must Do Coding Questions - Topic-wise
- Company-wise Practice Problems
- Company Preparation
- Competitive Programming
- Software Design-Patterns
- Company-wise Interview Experience
- Experienced - Interview Experiences
- Internship - Interview Experiences
Python Foundation | Variables and Datatypes Question 8
Last Updated :
Discuss
Comments
Find the output of the below python program:
tup = (1, 2, 3, 4)
tup.append( (5, 6, 7) )
print(len(tup))
5
7
3
Compilation Error
This question is part of this quiz :
Python Datatypes, Operators and Conditional StatementsTags:
Share your thoughts in the comments

GeeksforGeeks