How can I implement the following in python?
#include <iostream> int main() { std::string a; std::cout << 'What is your name? '; std::cin >> a; std::cout << std::endl << 'You said: ' << a << std::endl; }
Output:
What is your name? Nick
You said: Nick
Call
and