This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Task 2 use a print() function with comma separation to combine 2 numbers and 2 strings | |
print("I'm picking you up at",16, "sharp not at ", 17,"Rember!") | |
# Task 3 display text describing an address, made from stings and variables of different | |
street = input ( "What is the name of your street?") | |
str_number = input ("And the number?") | |
print ("So it is", street, str_number) | |
# Task 4[ ] define a variable with a string or numeric value | |
num_newst = 50 |