2021-05-30 12:04:16 -06:00

7 lines
296 B
Python

name = "David Billings"
location = "Colorado"
print (f"Hello everyone, my name is {name} \nI just finished a Cyber-Security Bootcamp @ DU")
print (f"I am from %s.\nUsing formatted Strings is the way to go!!" %location)
print ("I have basic programming experience (Learn Python 3 The Hard Way)")