11 lines
240 B
Python
11 lines
240 B
Python
#!/usr/bin/python
|
|
# -*- coding: utf-8 -*-
|
|
|
|
def solveIt():
|
|
# return a string that is the screen name you would like
|
|
return 'poprhythm'
|
|
|
|
if __name__ == '__main__':
|
|
print 'This script submits the screen name: ' + solveIt() + '\n'
|
|
|