![]() |
Create a program - Printable Version +- Python Forum (https://python-forum.io) +-- Forum: Python Coding (https://python-forum.io/forum-7.html) +--- Forum: General Coding Help (https://python-forum.io/forum-8.html) +--- Thread: Create a program (/thread-27690.html) |
Create a program - aien33 - Jun-17-2020 hello, im new to this. im wondering if i am possible to create a program which can prompt user some information bfore they can use an application. for example, i have a software A. When i open software A, i need a pop up window that will ask user to fill in few details before he can use the software A. thank you in advance ![]() RE: Create a program - SheeppOSU - Jun-17-2020 I would suggest finding some Python tutorial. From what you're asking it seems that you don't know the basics of Python. So it would be best to go through a book, or some video tutorial that you find on YouTube or something. There is also a tutorial section on this site that has a section for the fundamentals of Python. Though to answer your question: userInput = input(messagePrompt)
|