Python Forum
I need someone to write an algorithm!!!!
Thread Rating:
  • 3 Vote(s) - 3.33 Average
  • 1
  • 2
  • 3
  • 4
  • 5
I need someone to write an algorithm!!!!
#1
Can someone give me the code for an algorithm to output a username for me itsrly important help pls
Reply
#2
In Python, I guess?
# prerequisite: have a username for output
username = "has-to-come-from-somewhere"
# output
print(username)
Reply
#3
A system user name or some other one?
"As they say in Mexico 'dosvidaniya'. That makes two vidaniyas."
https://freedns.afraid.org
Reply
#4
(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)
Reply


Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020