Saturday, March 23, 2019

Input string

Input value using python 2 and python 3
Example1:
```

# -*- coding: utf-8 -*-
#
import os
#python2.X
a = raw_input("enter your name : ")
print "hell0"+a
os.system("pause")
#python3
#a = input("input:")
#print ("name"+ a) 

No comments:

Post a Comment