Python Input And Output
Rushikesh J.
QA Automation Engineer @Vinz Global | Robot Framework | Manual Testing, Automation Testing | Python | Selenium | GIT | JIRA | Immediate Joiner | API Testing Using Postman | Jenkins
Input: To Get Any Thing From User, We Used input() Function In Python3
IMP:Python input() function is used to take user input. By default, it returns the user input in form of a string.
Example:Name = input(“Enter your name”)
Output: To Display Anything To User We Used print() Function In Python3
Example:print(Name)