Download as docx, pdf, or txt
Download as docx, pdf, or txt
You are on page 1of 4

Python 3.12.2 (tags/v3.12.2:6abddd9, Feb 6 2024, 21:26:36) [MSC v.

1937 64 bit (AMD64)] on win32

Type "help", "copyright", "credits" or "license()" for more information.

============== RESTART: C:/Users/Yash/Desktop/python/assending.py ==============

Enter the First number3

Enter the Second number2

Enter the Third number1

Traceback (most recent call last):

File "C:/Users/Yash/Desktop/python/assending.py", line 7, in <module>

min=mid=max=none

NameError: name 'none' is not defined. Did you mean: 'None'?

============== RESTART: C:/Users/Yash/Desktop/python/assending.py ==============

Enter the First number3

Enter the Second number2

Enter the Third number1

Traceback (most recent call last):

File "C:/Users/Yash/Desktop/python/assending.py", line 7, in <module>

min = mid = max = none

NameError: name 'none' is not defined. Did you mean: 'None'?

============== RESTART: C:/Users/Yash/Desktop/python/assending.py ==============

Enter the First number3

Enter the Second number2

Enter the Third number1

Traceback (most recent call last):

File "C:/Users/Yash/Desktop/python/assending.py", line 19, in <module>

print("Numbers in ascending order:", min, mid, mix)

NameError: name 'mix' is not defined. Did you mean: 'min'?

============== RESTART: C:/Users/Yash/Desktop/python/assending.py ==============


Enter the First number3

Enter the Second number2

Enter the Third number1

Numbers in ascending order: None None None

============== RESTART: C:/Users/Yash/Desktop/python/assending.py ==============

Enter the First number3

Enter the Second number2

Enter the Third number1

Numbers in ascending order: 1 2 3

============= RESTART: C:/Users/Yash/Desktop/python/assending.py ============

Enter a single character:D

Traceback (most recent call last):

File "C:/Users/Yash/Desktop/python/assending.py", line 2, in <module>

if ch>=A and ch<= Z:

NameError: name 'A' is not defined

============= RESTART: C:/Users/Yash/Desktop/python/assending.py ============

Enter a single character:D

Traceback (most recent call last):

File "C:/Users/Yash/Desktop/python/assending.py", line 2, in <module>

if ch>=A and ch<= Z:

NameError: name 'A' is not defined

============= RESTART: C:/Users/Yash/Desktop/python/assending.py ============

Enter a single character:A

Traceback (most recent call last):

File "C:/Users/Yash/Desktop/python/assending.py", line 2, in <module>

if ch>=A and ch<=Z:

NameError: name 'A' is not defined


============= RESTART: C:/Users/Yash/Desktop/python/assending.py ============

Enter a single character:A

You entered an upper case character.

============= RESTART: C:/Users/Yash/Desktop/python/assending.py ============

Enter a single character:3

You entered a digit.

============= RESTART: C:/Users/Yash/Desktop/python/assending.py ============

Enter a single character:@

You entered a special character

============= RESTART: C:/Users/Yash/Desktop/python/assending.py ============

For quadratic eqution, ax**2 + bx + c = 0, enter the coeffcients below

enter the coefficient of a:3

enter the coefficient of b:2

enter the coefficient of c:1

Roots are complex and imaginary

============= RESTART: C:/Users/Yash/Desktop/python/assending.py ============

For quadratic eqution, ax**2 + bx + c = 0, enter the coeffcients below

enter the coefficient of a:0

enter the coefficient of b:4

enter the coefficient of c:2

value of 0 should not be zero

Aborting!!!!!!

============= RESTART: C:/Users/Yash/Desktop/python/assending.py ============

For quadratic eqution, ax**2 + bx + c = 0, enter the coeffcients below


enter the coefficient of a:0

enter the coefficient of b:3

enter the coefficient of c:2

value of, a,should not be zero

Aborting!!!!!!

You might also like