Comment your answers below! 👇 #python #programming #developer #programmer #coding #coder #softwaredeveloper #computerscience #webdev #webdeveloper #webdevelopment #pythonprogramming #pythonquiz #ai #ml #machinelearning #datascience
48
17
151
Replies
Catch all the action and excitement: NWA on Roku airs for free every Tuesday on Roku Sports at 8 pm ET with replays on Tuesday at 11:00 PM ET / 8:00 PM PT, Saturday afternoons, + on demand.
0
1
4
We're honored to be selected for the Techstars + Cardano Founder Catalyst program! The program will benefit us through networking opportunities, refining our products. coaching & mentoring programs. We're excited to continue on this journey with our mentors and fellow founders!
67
70
76
@Python_Dv B) 3333 a = "3" is a string (note the quotes) › a * 3 = "333" (repeats string 3 times) › "333" + a = "3333" (concatenates strings) For beginners: * repeats strings, + joins them! If a was a number (a=3), the answer would be 12.
0
0
13
@Python_Dv Answer:-(B)3333 a is a string . String*n means repeating the string n times. So a*3 means repeat a 3 times. So the string becomes 333 then add a means concatenate a with 333 Final output is a string in which a repeat 4 times.
0
0
0
@Python_Dv >>> a="3" >>> print(a*3)333 >>> print(a*3+3) print(a*3+3) TypeError: can only concatenate str (not "int") to str https://t.co/BZAGuL5gS0
1
0
1