Jump to content

User:TheProgrammerBoy/sandbox

From Wikipedia, the free encyclopedia
This is an old revision of this page, as edited by TheProgrammerBoy (talk | contribs) at 09:17, 29 July 2018 (Hello, {{subst:REVISIONUSER}}!). The present address (URL) is a permanent link to this revision, which may differ significantly from the current revision.

{{subst:REVISIONUSER}}

#!/bin/env python

usrname = "World" # Username
print("Hello, " + usrname + "!") # Output: Hello, World!

WindoRant