SyntaxFix
Write A Post
Hire A Developer
Questions
You can do the same in python3 as follows :
#!usr/bin/python i = 0 while i<10 : print('.',end='') i = i+1
and execute it with python filename.py or python3 filename.py
python filename.py
python3 filename.py