❌

Normal view

There are new articles available, click to refresh the page.
Before yesterdayMain stream

Python print() funtion

8 July 2024 at 14:54

I am learned python basic concept today.
share you what i learned today with example.

The name as it is print what you entered inside print function.

Ex : print("Hello")

In additionally you can pass variables like string or integer or other data types.

anime1 = "dragon ball"
anime2 = "naruto"
Ex : print("which anime do you like ? a=", anime1, " or b=", anime2)
❌
❌