Answers for "python text ouput to console"

-1

python get input from console

# input
input1 = input()
  
# output
print(input1)
Posted by: Guest on July-07-2021
-1

python text ouput to console

#in python 2.7
print "Hello world"
#in python 3.7
print("Hello again world")

#Neither of these require any imports.
Posted by: Guest on May-03-2020

Python Answers by Framework

Browse Popular Code Answers by Language