Fundamentals
Strings
Data Types
Algorithms
Logic
def print_statements(): # Printing lines of code: [print(x) for x in ["Hello Mark!","This is my first python script.","Python will be fun to learn!","I am not at COGS","I am at home in my jammies."]]
- def print_statements():
- # Printing lines of code:
print("Hello Mark!","This is my first python script.","Python will be fun to learn!","I am not at COGS","I am at home in my jammies.", sep="\n")- [print(x) for x in ["Hello Mark!","This is my first python script.","Python will be fun to learn!","I am not at COGS","I am at home in my jammies."]]