Skip to main content

Learn Python Biginners to Advance

How to Download Python

For Laptop/PC

search: python.org in your chrome browser/ another browser 

then download latest version of python for your pc/laptop.


Then Install latest version of PYCHARM--

goto google chrome and search:Pycharm and click first link https://youtu.be/MoeQlmeJnPg

Note: If your PC is 32 bit Old Computer with 2gb RAM then install pycharm version 2018.2.7

For Android

Open your play store then search:pydroid3 and click on install.

Start Learning Python

1.How to find output in python

Write any word in print("write text here") same word you get in output.

EXAMPLES:

Code:

print("Hello world")

Output:

Hello world

Code:

print("enter your text")

Output:

enter your text

2.How to use Calculator using python

write any equation/calculation in print(type here math problems.) then you get exact answer of this math problem in output.

EXAMPLES:

Code:

print(5+3+6)

Output:

14


Comment,Escape sequence and print()

Code:

#This is single line comment

#Not show in output if i write(#).

'"Multiple

  Line

  Comments"'

print("hello, guys")

Output:

hello, guys

Code:


Comments

Post a Comment