Need development

<PLEASE USE THE FOLLOWING TEMPLATE TO HELP YOU CREATE A GREAT POST!>

<Below this line, add a link to the EXACT exercise that you are stuck at.>

https://www.codecademy.com/courses/python-beginner-2W5v7/0/1
<In what way does your code behave incorrectly? Include ALL error messages.>

<What do you expect to happen instead?>

how i can develope this code ?



user_input = raw_input("please enter a valid word: ")
user_input.lower() 
if len(user_input) > 0 and user_input.isalpha():
    name = user_input
    print name[1:] + name[0] + 'ay'
else:
    print "Please enter a valid word Or You not a human"


For best results, follow the instructions as closely as possible, and use the exact variable names given.

actually this code i create it before i follow the instruction, i want it the code to be simple and short as possible as i could .

Then we have to move your topic out of this part of the forum, over to the Corner Bar.

why you have to move it ?

Because it doesn’t follow the instructions and creates confusion in the dedicated Q&A. Out in the Corner Bar you can play around and discuss ideas without concern, and without creating a disruption in the other category.

Oh i get it so Corner bar is for prupose ideas , i love that , thankx anyway

1 Like

This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.