You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
281 B
18 lines
281 B
4 years ago
|
a:str = "Hello"
|
||
|
b:str = "World"
|
||
|
c:str = "ChocoPy"
|
||
|
|
||
|
def cat2(a:str, b:str) -> str:
|
||
|
return a + b
|
||
|
|
||
|
def cat3(a:str, b:str, c:str) -> str:
|
||
|
return a + b + c
|
||
|
|
||
|
print(cat2(a, b))
|
||
|
print(cat2("", c))
|
||
|
print(cat3(a, " ", c))
|
||
|
print(len(a))
|
||
|
print(len(cat2(a,a)))
|
||
|
print(len(cat2("","")))
|
||
|
|