Post

Python Developer
Python Developer@Python_Dv·
Comment below the output! 😃👇
Python Developer tweet media
English
39
7
120
13.9K
Earnest Codes
Earnest Codes@Earnesto037·
@Python_Dv Answer: (B) 7 The code print(len("Python" + "3")) first performs string concatenation, joining the two strings "Python" and "3" into a single string "Python3". The len() function then calculates the length of this resulting string. The string "Python3" contains 7
English
1
0
7
779
Kamal Gurjar
Kamal Gurjar@KamalGurjar8·
@Python_Dv Output: 7 "Python" + "3" becomes "Python3" → 7 characters.
English
0
0
3
1.1K
pooja_jha
pooja_jha@poojajha29·
@Python_Dv Ans : 7 Python has 6 characters & "3" is a string with 1 character "Python" + "3" = "python3" Len("Python3") = 7 So output is B.
English
0
0
2
497
Obed
Obed@obed_servusdei·
@Python_Dv The output is 7. It is String concatenation because the Python and the 3 are strings making the initial result = Python3, then calculating the length will be 7.
English
0
0
1
356
Byte Focus Tech
Byte Focus Tech@ByteFocusB·
@Python_Dv "python" and "3" become "python3" Len() count the characters of the final word Output:7
English
0
0
1
772
NovayaZemlya
NovayaZemlya@ZemlyaNova27479·
@Python_Dv print(len("Python" + "3"))=print(len("Python3"))=print(7)=7 Answer: 7
Deutsch
0
0
1
409
K.AMMAAR
K.AMMAAR@k_ammaar12·
@Python_Dv The answer is 7 because python+3 is python3 and its length is 7.
English
0
0
1
23
Palak sharma
Palak sharma@Palakshar27·
@Python_Dv The answer is 7 In "Python"+"3" as string addition takes place so it becomes Python3. Len() gives total length/words in string. As Python3 has 7 letters. Hence, the answer is 7.
English
0
0
0
204
Trisha 479
Trisha 479@trisha51972·
@Python_Dv Option B. 7 I will read "python+3" as a string, so it will start counting, and the result is 7.
English
0
0
0
38
Saket Kumar
Saket Kumar@SaketKumarX·
@Python_Dv Output : B) 7 ✅ "Python" + "3" --> "Python3" (by string concatenation) print(len("Python3") --> 7 ✅
Deutsch
0
0
0
36
Paylaş