Skip to content

Commit 340267c

Browse files
committed
Refactor: to Portuguese for English.
1 parent 68811b7 commit 340267c

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

ex059.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#Create a program that reads two values and displays a menu on the screen:
1+
#59-Create a program that reads two values and displays a menu on the screen:
22
#[ 1 ] add
33
#[ 2 ] multiply
44
#[ 3 ] bigger

ex060.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Write a program that reads any number and displays its factorial.
1+
#60- Write a program that reads any number and displays its factorial.
22
# just in four lines
33
'''from math import factorial
44
number = int(input('Enter a number:'))

ex061.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Redo CHALLENGE 51, reading the first term and the reason of an AP, showing the first 10 terms of the progression
1+
#61- Redo CHALLENGE 51, reading the first term and the reason of an AP, showing the first 10 terms of the progression
22
# using the while structure.
33
print("Arithmetic progression generator")
44
print("-=-" * 20)

ex062.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Improve challenge 61 by asking the user if he wants to show some more terms. The program will exit when he says he
1+
#62- Improve challenge 61 by asking the user if he wants to show some more terms. The program will exit when he says he
22
# wants to show 0 terms.
33
print("Arithmetic progression generator")
44
print("-=-" * 20)

ex063.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#Write a program that reads any integer number N and displays on the screen the first N elements of a
1+
#63-Write a program that reads any integer number N and displays on the screen the first N elements of a
22
# Fibonacci Sequence.
33
terms = int(input("How many terms do you want to show?"))
44
first_term = 0

ex064.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#Create a program that reads several integers from the keyboard. The program will only stop when the user enters the
1+
#64-Create a program that reads several integers from the keyboard. The program will only stop when the user enters the
22
# value 999, which is the stopping condition. At the end, show how many numbers were entered and what the sum of them
33
# was (disregarding the flag).
44
number = counter = amount = 0

0 commit comments

Comments
 (0)