Computer Science, asked by galaxy15, 2 months ago

Program 4:- Write a program to read string from the keyboard.

Answers

Answered by 0RPS0
3

Str1 = input ( 'Enter String1 :' )

Str2 = input ( ' Enter String2 :' )

print ( 'String1 = ' , Str1)

print ( 'String2 = ' , Str2)

*Output*

Enter String1 : Hello

Enter String2 : Welcome to Python Programming

String1 = Hello

String2 = Welcome to Python Programming

Similar questions