Computer Science, asked by paulsouvik493, 7 months ago

what is python ? give example of python..

Answers

Answered by gaurisingh8c
2

Answer:

python is a interpreted high level and programing language

Explanation:

Answered by LinuxUser
0

Answer:

Python is a high-level programming language which interprets code rather than compiling it. It can be used for multiple things like machine learning, game development, website and app development and AI development

Example:-

#This program will take your fav colour and name and display it on the terminal

name = input('what is your name? ') # takes user name

fav_color = input('what is your fav color? ') # take fav color

print('hello ' + name + ' your fav color is ' + fav_color'.') # prints the sentence

print('hello world') # prints hello world

Similar questions