“Generator tabeli śladu Pythona” Kod odpowiedzi

Tabela śladu Pythona

counter = 1
while counter < 11:
    print(counter, end = ‘ ‘)
    counter=(counter + 1)
Relieved Rhinoceros

Generator tabeli śladu Pythona

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)
Agreeable Alligator

Generator tabeli śladu Pythona

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
Reaper

Generator tabeli śladu Pythona

number = 1
y=2
x=2
while number < 4:
  number = number + 1
  y= y+x
  print(y)
Yucky Yak

Generator tabeli śladu Pythona

counter = 1
while counter < 3:
    print(counter, end = ‘ ‘)
    counter=(counter + 1)
Xanthous Xenomorph

Odpowiedzi podobne do “Generator tabeli śladu Pythona”

Pytania podobne do “Generator tabeli śladu Pythona”

Więcej pokrewnych odpowiedzi na “Generator tabeli śladu Pythona” w Python

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu