First Jupyter Post
The most advanced Python you'll ever see
import getpass
swag = "what's up gamers"
print(swag)
def cool(sample):
print(sample)
ans = input()
return ans
rsp = cool("Blog: Say something cool")
if rsp == "something cool":
print(getpass.getuser()+": "+rsp)
print("Blog: haha very clever 😐")
else:
print(getpass.getuser()+": "+rsp)
print("Blog: haha yeah that is pretty cool!")