7 lines
296 B
Python
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)")
|