top button
Flag Notify
    Connect to us
      Site Registration

Site Registration

Python: How does a python program take input from user ?

0 votes
287 views
Python: How does a python program take input from user ?
posted Apr 16, 2016 by Ganesh Kumar

Share this question
Facebook Share Button Twitter Share Button LinkedIn Share Button

1 Answer

0 votes

I know two ways to provide input from keyboard.
1. raw_input("Enter no:")
2. input ("Enter no.")

answer Apr 16, 2016 by Harshita
Similar Questions
+1 vote

I wanted to do a little project for learning Python. I thought a chat system will be good as it isn't something that I have ever done.

I wanted to know what will I need? I think that would require me these

1 learn network/socket programming
2 find a free server to host my chat server
3 GUI development for clients

-I wanted to know whether these are all that I would need or are there more things?
-Will I need to learn a web framework like Django?
-Will I need to learn something for database management like sql for handling people's account names and password?

Is google appengine good for hosting the website or should I look up at django hosting websites?

0 votes

Inputs would be:
- Name
- age
- gender
- married/unmarried

User feeds this data once but he/she can check later on also. So in this case program should have option to feed and read data from file.

...