0% found this document useful (0 votes)
4 views2 pages

Python Identifiers and Strings

The document contains a Python script that prints a student's bio data, including their name, class, subject marks, total marks, percentage, and grade. The output format is clearly structured, displaying each piece of information in a readable manner. The script demonstrates basic print functionality in Python.

Uploaded by

timepassilove90
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
4 views2 pages

Python Identifiers and Strings

The document contains a Python script that prints a student's bio data, including their name, class, subject marks, total marks, percentage, and grade. The output format is clearly structured, displaying each piece of information in a readable manner. The script demonstrates basic print functionality in Python.

Uploaded by

timepassilove90
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 2

PYTHON

Input Output
print("BIO DATA") BIO DATA
print("NAME: Yash Joshi") NAME: Yash Joshi
print("CLASS: XI - C") CLASS: XI - C
print("SUBJECT MARKS") SUBJECT MARKS
print("ENGLISH: 97") ENGLISH: 97
print("MATHS: 90") MATHS: 90
print("SOCIAL SCIENCE: 91") SOCIAL SCIENCE: 91
print("SCIENCE: 96") SCIENCE: 96
print("COMPUTER COMPUTER APPLICATIONS:
APPLICATIONS: 97") 97
print(".....................") .....................
print("TOTAL MARKS: 471") TOTAL MARKS: 471
print("PERCENTAGE: 95 %") PERCENTAGE: 95 %
print("GRADE: A") GRADE: A
PYTHON
INPUT

BIO DATA
print("BIO DATA")
print("NAME: Yash Joshi")
print("CLASS: XI - C")
print("SUBJECT MARKS")
print("ENGLISH: 97")
print("MATHS: 90")
print("SOCIAL SCIENCE: 91")
print("SCIENCE: 96")
print("COMPUTER APPLICATIONS: 97")
print(".....................")
print("TOTAL MARKS: 471")
print("PERCENTAGE: 95 %")
print("GRADE: A")

OUTPUT

BIO DATA
NAME: Yash Joshi
CLASS: XI - C
SUBJECT MARKS
ENGLISH: 97
MATHS: 90
SOCIAL SCIENCE: 91
SCIENCE: 96
COMPUTER APPLICATIONS: 97
.....................
TOTAL MARKS: 471
PERCENTAGE: 95 %
GRADE: A

You might also like