January 2019
Beginner
318 pages
8h 23m
English
>>> name = "Eric">>> profession = "comedian">>> affiliation = "Monty Python">>> age = 25>>> message = (... f"Hi {name}. "... f"You are a {profession}. "... f"You were in {affiliation}."... )>>> message
str1 = 'Hello'str2 ='World!'print('str1 + str2 = ', str1 + str2)print('str1 * 3 =', str1 * 3)
Read now
Unlock full access