Tabela de traços de Python
counter = 1
while counter < 11:
print(counter, end = ‘ ‘)
counter=(counter + 1)
Relieved Rhinoceros
counter = 1
while counter < 11:
print(counter, end = ‘ ‘)
counter=(counter + 1)
num = 7
factorial = 1
# check if the number is negative, positive or zero
if num <= 0:
print("Sorry, factorial does not exist for negative numbers")
elif num == 0:
print("The factorial of 0 is 1")
else:
limit = num-1
for i in range(1,limit):
factorial = factorial*i
print("The factorial of",num,"is",factorial)
Read employees info
Print ‘enter Hours worked’
Get hours from employee
Print ‘basic pay ‘
If hours >40
Basic rate =40*basic pay
Overtime pay =(hours-40)*basic pay *1.5
Else
Basic rate = hours* basic pay
Overtime pay =0
End if
Total pay = basic rate +overtimePay
Print ‘basic rate is’ basic rate
If overtime pay!=0
Print ‘overtime pay is’ overtime pay
Endif
Print ‘total for this week is’ total pay
number = 1
y=2
x=2
while number < 4:
number = number + 1
y= y+x
print(y)
counter = 1
while counter < 3:
print(counter, end = ‘ ‘)
counter=(counter + 1)