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:16, 29 July 2018 (Created page with ' <syntaxhighlight lang="python" line="1"> #!/bin/env python usrname = "World" # Username print("Hello, " + usrname + "!") # Output: Hello, World! </syntaxhighl...'). The present address (URL) is a permanent link to this revision, which may differ significantly from the current revision.
(diff) ← Previous revision | Latest revision (diff) | Newer revision → (diff)
#!/bin/env python

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

WindoRant