Python Forum
I need someone to write an algorithm!!!! - Printable Version

+- Python Forum (https://python-forum.io)
+-- Forum: Python Coding (https://python-forum.io/forum-7.html)
+--- Forum: General Coding Help (https://python-forum.io/forum-8.html)
+--- Thread: I need someone to write an algorithm!!!! (/thread-2178.html)



I need someone to write an algorithm!!!! - NassiThePythonPro - Feb-24-2017

Can someone give me the code for an algorithm to output a username for me itsrly important help pls


RE: I need someone to write an algorithm!!!! - merlem - Feb-24-2017

In Python, I guess?
# prerequisite: have a username for output
username = "has-to-come-from-somewhere"
# output
print(username)



RE: I need someone to write an algorithm!!!! - wavic - Feb-24-2017

A system user name or some other one?


RE: I need someone to write an algorithm!!!! - j.crater - Feb-24-2017

(Feb-24-2017, 11:04 AM)merlem Wrote: In Python, I guess?
# prerequisite: have a username for output
username = "has-to-come-from-somewhere"
# output
print(username)

If you want (the user?) to enter the username, you can do:

username = input('Enter username: ')
print(username)