toobasic to mention

PHOTO EMBED

Thu Jan 25 2024 18:03:14 GMT+0000 (Coordinated Universal Time)

Saved by @Realencoder

print("\033[31m", "=======SUMMARY OF WHAT I'VE LEARNT TODAY=======" ,"\033[0m")
print("Adding colour to a text and the if statement")
print()
name = input("What's your name?:")
if name == "Robert":
 print("\033[33m" ,"Welcome and feel free to critique!" ,"\033[0m")
else:
 print("Great! You may have a look at things") 
print()
hobby = input("What's your favourite hobby?:")
if name == "Robert":
 print("""I am so sorry that  I did not write today's blog despite your clear instruction...
       I promise that I'll write it tommorow and I also need your clear instruction concerning some matters.
        For that reason I wish to call tommorow.""")
else:
 print("That's a great hobby you got there!")
print("\033[33m" ,"Thank you for your time and have a great day!" ,"\033[0m")
content_copyCOPY