first_name = "Boris" last_name = "Dimitrov" full_name = first_name + " " + last_name print(full_name)
Result: Boris Dimitrov
first_name = "Boris" last_name = "Dimitrov" full_name = first_name + " " + last_name print(full_name)
Result: Boris Dimitrov
First of all you need to install python if it is not already installed. Python download page: https://www.python.org/downloads/
Python installation path should be added as an system variable in Windows:
In Windows you can open a command prompt and type the following command:
py --version
or just type py and press Enter. You must see Python start up:
If you are using Visual Studio Code do one of the following:
print "Hello World!\n"