Lecture 1

Don’t Rush To Make Notes. Watch the Full Video First.

Topics Covered

PYTHON-FUNCTIONSS
PRINT FUNCTION

print(“It is usually used to display a particular message on the outside screen so that the website user can view the end result of the code.”)

PYTHON-FUNCTIONSS
LEN FUNCTION

len(“Len Function on strings is used to calculate the length of the string. It counts and returns the number of characters in a string including spaces.”)

PYTHON-FUNCTIONSS
INPUT FUNCTION

input(“Input function is used to collect the value from the website/app user on the frontend. The string within the paranthesis guides the user about the value asked.”)

dt
STRINGS DATA TYPE

Strings data type includes all the characters including any symbol, spaces or even numeric values. But numeric values loses calculative power within strings.

ATTEMPT THE EXAMPLES USED IN THE LECTURE


name = “AKSHAY GUPTA”
city = “DELHI”

Display/Output :
My name is AKSHAY GUPTA and i live in DELHI.

name="AKSHAY GUPTA"

city="DELHI"

print("My name is " + name + " and i live in " + city)

Display/Output :
My name is users_name and i live in users_city

name =input("What is your name? ")

city =input("Which city do you live in? ")

print("My name is " + name + " and i live in " + city)

previous-lecture

PREVIOUS - VS CODE INSTALL

Create File & Folder, Run File

next-lecture

PRACTICE QUESTIONS - LECTURE 1

Print, Input, Len

5 thoughts on “Lecture 1- Print, Len

  1. Afnankhan says:

    Course karna ha

    1. Ankush Singh says:

      Sir, please go to this link and buy the course here :
      https://rzp.io/l/buy-python-course

      You will get access to full python course.

  2. Mohamed nor mohamoud says:

    I want to learn python

    1. Ankush Singh says:

      Sir, please go to this link and buy the course here :
      https://rzp.io/l/buy-python-course

      You will get access to full python course.

  3. Ankush Gupta says:

    Well explaination sir for the absolute newcomer. Please let guide how to pay to enrol for the full course

Leave a Reply to Mohamed nor mohamoud Cancel reply

Your email address will not be published. Required fields are marked *