Skip to content

Instantly share code, notes, and snippets.

View VladimirZayas's full-sized avatar

VladimirZayas

View GitHub Profile
@VladimirZayas
VladimirZayas / Module 1 Basic 0.py
Created February 14, 2022 18:09 — forked from CavaTrendy/Module 1 Basic 0.py
Introduction to Python - Unit 1 Absolute Beginner
# 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