7 lines
296 B
Python
Raw Normal View History

2021-05-17 11:17:53 -06:00
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)")