Python Forum
coding request - Printable Version

+- Python Forum (https://python-forum.io)
+-- Forum: Python Coding (https://python-forum.io/forum-7.html)
+--- Forum: Homework (https://python-forum.io/forum-9.html)
+--- Thread: coding request (/thread-20385.html)



coding request - patirajesh07 - Aug-08-2019

hi I all,
I got a fallowing assailment please help to complete this I am totally new to the programming language.so please help me

assignment :
input:
X= siva krishana
from this required out put is
"SIVA KRISHANA"
"krishana siva"
"siva anhsirk"

thankyou


RE: coding request - ichabod801 - Aug-08-2019

What have you tried? We're not big on writing code for people here, but we would be happy to help you fix your code when you run into problems. When you do run into problems, please post your code in Python tags, and clearly explain the problem you are having, including the full text of any errors.


RE: coding request - DeaD_EyE - Aug-08-2019

You need:

I guess ~ 5 lines of code


RE: coding request - jefsummers - Aug-08-2019

Learning programming is built on a series of steps. If someone writes this for you, you won't learn this basic foundational material and you will be completely lost soon. It seems hard, but you need to try to write this. Start with breaking it into the pieces - how do you get a string input? Then, how do you break it apart? How do you make it caps? Lower case? Do it as a series of problems, not trying to solve the whole problem at once. Post your progress and we can prod you along.


RE: coding request - nilamo - Aug-14-2019

ezpz

text = input("X= ")
# from this required out put is
print("SIVA KRISHANA")
print("krishana siva")
print("siva anhsirk")