After reading the intresting articles of vegaseat, I finally decided to get my toes wet.
So I installed Pyton 3.3.2 amd the plugin for Visual Studio 2010.
The best learning is of course practice, so I started coding right away.
Here is my first try:
import sys
print('Hello World')
print('I like internet for:')
for item in ['email', 'surfing', 'home']:
print(item)
print
c=sys.stdin.read(1)
This works,but if I want to eliminate the newline, auto added by the print function, nothing is printed.
Google proposed, end, sep and comma, but nothing seems to work.
Anyone any ideas?
Thanks in advance for a solution.