What a noncense ? | Sololearn: Learn to code for FREE!
Novo curso! Todo programador deveria aprender IA generativa!
Experimente uma aula grƔtis
0

What a noncense ?

class Car: def __str__(self): return str (self. model) m3 = Car( ) m3.model = "bmw" ---------------------------------------- print (m3) >>output: bmw # "bmw" printed as a string print ("my_" + (m3)) >>output: TypeError must be str, not Car #Why this happens? # Why now operation: "my_" + "bmw" doesn't exist?

10th Jun 2019, 7:00 PM
ŠœŠ°Š³Š¾Š¼ŠµŠ“ ŠŠŗуŠµŠ²
ŠœŠ°Š³Š¾Š¼ŠµŠ“ ŠŠŗуŠµŠ² - avatar
4 Respostas
+ 7
m3 isn't a string type, but a class instance. It has a string representation that can be called with str() (or repr())
10th Jun 2019, 7:52 PM
Anna
Anna - avatar
+ 12
I thought firstly noncense is a Python component
10th Jun 2019, 7:55 PM
Bohdan
Bohdan - avatar
+ 3
print("my " + str(m3))
10th Jun 2019, 7:35 PM
Anna
Anna - avatar
0
i now, but why it is necessary to write: str (m3)), if just already (m3) is string type??
10th Jun 2019, 7:50 PM
ŠœŠ°Š³Š¾Š¼ŠµŠ“ ŠŠŗуŠµŠ²
ŠœŠ°Š³Š¾Š¼ŠµŠ“ ŠŠŗуŠµŠ² - avatar