I\'m new to Python, so I\'ve been running through my own set of exercises to simply start memorizing basic functions and syntax. I\'m using Pycharm IDE and Python 3.4. I\'ve
Try format():
print("Type string: {}".format(123)) print("Concatenate strings and ints {}".format(10))