string.strip().split()โ๏ธโก๏ธ๐
strip(): Removes extra spaces and unwanted characters from the beginning and end of a string.
split(): Breaks a string into a list of smaller strings, using a specified separator (like spaces or commas).
#Python#StringMethods#CodingTips
This course free on @Udemy
Grab the opportunity !
You might enjoy this course on @Udemy: Adobe Animate: A Comprehensive Guide for Beginners to Pro https://t.co/9bLSjynjLV
Give the right answer .
If you know the reason reply itโ๏ธ
class a:
def m(self):
print('A')
class b(a):
def m(self):
print('B')
class c(a):
pass
class d(c,b):
pass
class e(b,c):
pass
obj=d()
var=e()
obj.m()
var.m()