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

C:\Users\Vijay.

Maske>python
Python 3.8.5 (tags/v3.8.5:580fbb0, Jul 20 2020, 15:43:08) [MSC v.1926 32 bit
(Intel)] on win32
Type "help", "copyright", "credits" or "license" for more information.
>>> name=input("Enter your name")
Enter your nameSarah
>>> Howdy=name
>>> print("Hello",Howdy)
Hello Sarah
>>> hrs = input("Enter Hours:")
Enter Hours:
>>> rate=input("Eenter Rate per Hour:")
Eenter Rate per Hour:
>>> pay=float(hrs)*float(rate)
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
ValueError: could not convert string to float: ''
>>>
>>> print("Pay:", pay)
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
NameError: name 'pay' is not defined
>>> hrs=input(Ënter Hour:")
File "<stdin>", line 1
hrs=input(Ënter Hour:")
^
SyntaxError: invalid syntax
>>> hrs=input("Enter Hour:")
Enter Hour:35
>>> rate=input("Enter Rate per hour:")
Enter Rate per hour:2.75
>>> pay=float(hrs)*float(rate)
>>> print("Pay:",pay)
Pay: 96.25
>>>

You might also like