Logo
2

Write a Python function named 'Concat' that takes two strings 'str_a' and 'str_b', concatenates/joins the strings with ':' in between them, and returns the joined string.

Below is the link to the IDE you can use to write and test your code. Once done there, copy the code and paste it here to answer the question.

Link: https://www.programiz.com/python-programming/online-compiler/

pls help

davidmacagodavidmacago asked a year ago

·

Answers

1

You can concat using fstrings.

def concat(str1, str2):
    return(f"{str1}:{str2}")

Learn more about fstring: https://docs.python.org/3/tutorial/inputoutput.html

davidapdavidap answered a year ago

Post your answer

Recommended Books

Reading books is a great way to learn. Here are some of the books we recommend.