diff --git a/exercicios/para-casa/SadProject.py b/exercicios/para-casa/SadProject.py new file mode 100644 index 0000000..b3e85a9 --- /dev/null +++ b/exercicios/para-casa/SadProject.py @@ -0,0 +1,11 @@ +from UsefulDate import Calculation +from UsefulDate import CalculateAge +from UsefulDate import LeapYear + + +sumAge = CalculateAge.CalculateAge(2023, 1996) +print(f"Bruna have {sumAge} age" ) + +sumLeapYear = LeapYear.leap_year(1996) +print(sumLeapYear) + diff --git a/exercicios/para-casa/UsefulDate/CalculateAge.py b/exercicios/para-casa/UsefulDate/CalculateAge.py new file mode 100644 index 0000000..1e3b8e0 --- /dev/null +++ b/exercicios/para-casa/UsefulDate/CalculateAge.py @@ -0,0 +1,2 @@ +def CalculateAge(current_year, year_born): + return current_year - year_born \ No newline at end of file diff --git a/exercicios/para-casa/UsefulDate/Calculation.py b/exercicios/para-casa/UsefulDate/Calculation.py new file mode 100644 index 0000000..45377a4 --- /dev/null +++ b/exercicios/para-casa/UsefulDate/Calculation.py @@ -0,0 +1,11 @@ +def sum(a, b): + return a + b + +def subtraction(a, b): + return a - b + +def multiplication(a, b): + return a * b + +def division(a, b): + return a / b \ No newline at end of file diff --git a/exercicios/para-casa/UsefulDate/FormatDate.py b/exercicios/para-casa/UsefulDate/FormatDate.py new file mode 100644 index 0000000..c99528c --- /dev/null +++ b/exercicios/para-casa/UsefulDate/FormatDate.py @@ -0,0 +1 @@ +#IREI FAZER, TÁ? EU JURO \ No newline at end of file diff --git a/exercicios/para-casa/UsefulDate/LeapYear.py b/exercicios/para-casa/UsefulDate/LeapYear.py new file mode 100644 index 0000000..ae01e51 --- /dev/null +++ b/exercicios/para-casa/UsefulDate/LeapYear.py @@ -0,0 +1,14 @@ +from datetime import date + +def leap_year(year): + if year%4 == 0: + if year % 100 == 0: + if year % 400 == 0: + return True + else: + print("Was born in a Leap year") + return True + else: + print("It wasn't a leap year") + return False + \ No newline at end of file diff --git a/exercicios/para-casa/UsefulDate/UsefulAge.py b/exercicios/para-casa/UsefulDate/UsefulAge.py new file mode 100644 index 0000000..5f58fcb --- /dev/null +++ b/exercicios/para-casa/UsefulDate/UsefulAge.py @@ -0,0 +1,17 @@ +import csv +import json + +data = [] +def add_info_in_usefull(): + age = input("Enter u age \n") + + list ={age: int()} + + data.append(list) + + with open("dataAGE.py", "w", newline= "") as arq_csv: + writer_csv = csv.writer(arq_csv) + writer_csv.writerows(data) + return data + +add_info_in_usefull() \ No newline at end of file diff --git a/exercicios/para-casa/UsefulDate/UsefulYear-arq.py b/exercicios/para-casa/UsefulDate/UsefulYear-arq.py new file mode 100644 index 0000000..6b0de53 --- /dev/null +++ b/exercicios/para-casa/UsefulDate/UsefulYear-arq.py @@ -0,0 +1,17 @@ +import csv +import json + +data = [] +def add_info_in_usefull(): + year_born = input("Enter the year you were born \n") + + list ={year_born: int()} + + data.append(list) + + with open("dataYEARBORN.py", "w", newline= "") as arq_csv: + writer_csv = csv.writer(arq_csv) + writer_csv.writerows(data) + return data + +add_info_in_usefull() \ No newline at end of file diff --git a/exercicios/para-casa/UsefulDate/__init__.py b/exercicios/para-casa/UsefulDate/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/exercicios/para-casa/UsefulDate/__pycache__/CalculateAge.cpython-311.pyc b/exercicios/para-casa/UsefulDate/__pycache__/CalculateAge.cpython-311.pyc new file mode 100644 index 0000000..73f1138 Binary files /dev/null and b/exercicios/para-casa/UsefulDate/__pycache__/CalculateAge.cpython-311.pyc differ diff --git a/exercicios/para-casa/UsefulDate/__pycache__/Calculation.cpython-311.pyc b/exercicios/para-casa/UsefulDate/__pycache__/Calculation.cpython-311.pyc new file mode 100644 index 0000000..5d7f86e Binary files /dev/null and b/exercicios/para-casa/UsefulDate/__pycache__/Calculation.cpython-311.pyc differ diff --git a/exercicios/para-casa/UsefulDate/__pycache__/FormatDate.cpython-311.pyc b/exercicios/para-casa/UsefulDate/__pycache__/FormatDate.cpython-311.pyc new file mode 100644 index 0000000..c446725 Binary files /dev/null and b/exercicios/para-casa/UsefulDate/__pycache__/FormatDate.cpython-311.pyc differ diff --git a/exercicios/para-casa/UsefulDate/__pycache__/LeapYear.cpython-311.pyc b/exercicios/para-casa/UsefulDate/__pycache__/LeapYear.cpython-311.pyc new file mode 100644 index 0000000..32cdafe Binary files /dev/null and b/exercicios/para-casa/UsefulDate/__pycache__/LeapYear.cpython-311.pyc differ diff --git a/exercicios/para-casa/UsefulDate/__pycache__/__init__.cpython-311.pyc b/exercicios/para-casa/UsefulDate/__pycache__/__init__.cpython-311.pyc new file mode 100644 index 0000000..336c3a6 Binary files /dev/null and b/exercicios/para-casa/UsefulDate/__pycache__/__init__.cpython-311.pyc differ diff --git a/exercicios/para-casa/UsefulDate/__pycache__/dataUsefull.cpython-311.pyc b/exercicios/para-casa/UsefulDate/__pycache__/dataUsefull.cpython-311.pyc new file mode 100644 index 0000000..f149ce6 Binary files /dev/null and b/exercicios/para-casa/UsefulDate/__pycache__/dataUsefull.cpython-311.pyc differ diff --git a/exercicios/para-casa/UsefulDate/dataAGE.py b/exercicios/para-casa/UsefulDate/dataAGE.py new file mode 100644 index 0000000..f64f5d8 --- /dev/null +++ b/exercicios/para-casa/UsefulDate/dataAGE.py @@ -0,0 +1 @@ +27 diff --git a/exercicios/para-casa/UsefulDate/dataYEARBORN.py b/exercicios/para-casa/UsefulDate/dataYEARBORN.py new file mode 100644 index 0000000..44173d5 --- /dev/null +++ b/exercicios/para-casa/UsefulDate/dataYEARBORN.py @@ -0,0 +1 @@ +1996 diff --git a/exercicios/para-casa/__init__.py b/exercicios/para-casa/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/exercicios/para-sala/Exercise Package/ExerciseOne/Mathematics/Calculation.py b/exercicios/para-sala/Exercise Package/ExerciseOne/Mathematics/Calculation.py new file mode 100644 index 0000000..45377a4 --- /dev/null +++ b/exercicios/para-sala/Exercise Package/ExerciseOne/Mathematics/Calculation.py @@ -0,0 +1,11 @@ +def sum(a, b): + return a + b + +def subtraction(a, b): + return a - b + +def multiplication(a, b): + return a * b + +def division(a, b): + return a / b \ No newline at end of file diff --git a/exercicios/para-sala/Exercise Package/ExerciseOne/Mathematics/__init__.py b/exercicios/para-sala/Exercise Package/ExerciseOne/Mathematics/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/exercicios/para-sala/Exercise Package/ExerciseOne/Mathematics/__pycache__/Calculation.cpython-311.pyc b/exercicios/para-sala/Exercise Package/ExerciseOne/Mathematics/__pycache__/Calculation.cpython-311.pyc new file mode 100644 index 0000000..5658e59 Binary files /dev/null and b/exercicios/para-sala/Exercise Package/ExerciseOne/Mathematics/__pycache__/Calculation.cpython-311.pyc differ diff --git a/exercicios/para-sala/Exercise Package/ExerciseOne/Mathematics/__pycache__/__init__.cpython-311.pyc b/exercicios/para-sala/Exercise Package/ExerciseOne/Mathematics/__pycache__/__init__.cpython-311.pyc new file mode 100644 index 0000000..f62a956 Binary files /dev/null and b/exercicios/para-sala/Exercise Package/ExerciseOne/Mathematics/__pycache__/__init__.cpython-311.pyc differ diff --git a/exercicios/para-sala/Exercise Package/ExerciseOne/MyCalculation.py b/exercicios/para-sala/Exercise Package/ExerciseOne/MyCalculation.py new file mode 100644 index 0000000..41d1588 --- /dev/null +++ b/exercicios/para-sala/Exercise Package/ExerciseOne/MyCalculation.py @@ -0,0 +1,12 @@ +from Mathematics import Calculation + +a = 3 +b = 2 + +print(Calculation.sum(a, b)) + +print(Calculation.subtraction(a, b)) + +print(Calculation.multiplication(a, b)) + +print(Calculation.division(a, b)) \ No newline at end of file diff --git a/exercicios/para-sala/Exercise in the Room/dataExerciceStudants.csv b/exercicios/para-sala/Exercise in the Room/dataExerciceStudants.csv new file mode 100644 index 0000000..30bdb4b --- /dev/null +++ b/exercicios/para-sala/Exercise in the Room/dataExerciceStudants.csv @@ -0,0 +1,2 @@ +Beyonce,42,10 +Bruna ,27,10 diff --git a/exercicios/para-sala/Exercise in the Room/dataExerciseOne.txt b/exercicios/para-sala/Exercise in the Room/dataExerciseOne.txt new file mode 100644 index 0000000..6e9e478 --- /dev/null +++ b/exercicios/para-sala/Exercise in the Room/dataExerciseOne.txt @@ -0,0 +1,2 @@ +Bruna de Macedo Santos +Garota Gamer amante de World Of Warcraft \ No newline at end of file diff --git a/exercicios/para-sala/Exercise in the Room/dataExerciseStudants.csv b/exercicios/para-sala/Exercise in the Room/dataExerciseStudants.csv new file mode 100644 index 0000000..a3a6567 --- /dev/null +++ b/exercicios/para-sala/Exercise in the Room/dataExerciseStudants.csv @@ -0,0 +1,2 @@ +Beyonce,42,10 +Bruna,27,10 diff --git a/exercicios/para-sala/Exercise in the Room/dataExerciseTwo.json b/exercicios/para-sala/Exercise in the Room/dataExerciseTwo.json new file mode 100644 index 0000000..be72f76 --- /dev/null +++ b/exercicios/para-sala/Exercise in the Room/dataExerciseTwo.json @@ -0,0 +1 @@ +[{"Name": "Beyonce", "Age": 42, "City": "Houston Texas", "Profission": "Singer, Performer and Actor", "Resume": "American singer, songwriter, and businesswoman. Known as Queen Bey, she has been widely recognized for her boundary pushing artistry, vocals, and performances. Her contributions to music and visual media and her concert performances have led her to become a prominent cultural figure of the 21st century. She was named the eighth greatest singer of all time by Rolling Stone in 2023."}] \ No newline at end of file diff --git a/exercicios/para-sala/Exercise in the Room/manipulationExercise.py b/exercicios/para-sala/Exercise in the Room/manipulationExercise.py new file mode 100644 index 0000000..c0fe327 --- /dev/null +++ b/exercicios/para-sala/Exercise in the Room/manipulationExercise.py @@ -0,0 +1,42 @@ +import csv +import json + +#Exercise + +# with open("./dataExerciseOne.txt", "r") as arq: #read +# content = arq.read() +# print(f"{content} - Bodecam") + + +# data = [{"Name": "Beyonce", "Age": 42, "City": "Houston Texas", "Profission": "Singer, Performer and Actor", +# "Resume": "American singer, songwriter, and businesswoman. Known as Queen Bey, she has been widely recognized for her boundary pushing artistry, vocals, and performances. Her contributions to music and visual media and her concert performances have led her to become a prominent cultural figure of the 21st century. She was named the eighth greatest singer of all time by Rolling Stone in 2023."}] +# with open("dataExerciseTwo.json", "w") as arquive_json: +# json.dump(data, arquive_json) +# with open("dataExerciseTwo.json", "r") as arquive_json: +# data = json.load(arquive_json) +# print(data) + + +data = [["Beyonce", 42, 10], ["Bruna ", 27, 10]] + +# with open("dataExerciceStudants.csv", "w", newline= "") as arq_csv: +# writer_csv = csv.writer(arq_csv) +# writer_csv.writerows(data) + +total_grade = 0 +total_studants = 0 + +with open("dataExerciceStudants.csv", "r") as arq: + reader_csv = csv.reader(arq) + for line in reader_csv: + name, age, grade = line + grade = float(grade) + total_grade = total_grade + grade + total_studants = total_studants + 1 + + if total_studants > 0: + average = grade / total_studants + print(f"Average grade: {average}") + + else: + print("No have studants in arquive") \ No newline at end of file diff --git a/exercicios/para-sala/Package/PackageBodecam/__init__.py b/exercicios/para-sala/Package/PackageBodecam/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/exercicios/para-sala/Package/PackageBodecam/__pycache__/__init__.cpython-311.pyc b/exercicios/para-sala/Package/PackageBodecam/__pycache__/__init__.cpython-311.pyc new file mode 100644 index 0000000..ed35401 Binary files /dev/null and b/exercicios/para-sala/Package/PackageBodecam/__pycache__/__init__.cpython-311.pyc differ diff --git a/exercicios/para-sala/Package/PackageBodecam/__pycache__/moduleOne.cpython-311.pyc b/exercicios/para-sala/Package/PackageBodecam/__pycache__/moduleOne.cpython-311.pyc new file mode 100644 index 0000000..d8238c1 Binary files /dev/null and b/exercicios/para-sala/Package/PackageBodecam/__pycache__/moduleOne.cpython-311.pyc differ diff --git a/exercicios/para-sala/Package/PackageBodecam/moduleOne.py b/exercicios/para-sala/Package/PackageBodecam/moduleOne.py new file mode 100644 index 0000000..65ad5b3 --- /dev/null +++ b/exercicios/para-sala/Package/PackageBodecam/moduleOne.py @@ -0,0 +1,5 @@ +def main(): + return "Girls!!" + +def sum(a, b): + return a + b \ No newline at end of file diff --git a/exercicios/para-sala/Package/Sum/Motorcycle/__init__.py b/exercicios/para-sala/Package/Sum/Motorcycle/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/exercicios/para-sala/Package/Sum/Motorcycle/__pycache__/__init__.cpython-311.pyc b/exercicios/para-sala/Package/Sum/Motorcycle/__pycache__/__init__.cpython-311.pyc new file mode 100644 index 0000000..a900e3e Binary files /dev/null and b/exercicios/para-sala/Package/Sum/Motorcycle/__pycache__/__init__.cpython-311.pyc differ diff --git a/exercicios/para-sala/Package/Sum/Motorcycle/__pycache__/sumMotorcycle.cpython-311.pyc b/exercicios/para-sala/Package/Sum/Motorcycle/__pycache__/sumMotorcycle.cpython-311.pyc new file mode 100644 index 0000000..fa94944 Binary files /dev/null and b/exercicios/para-sala/Package/Sum/Motorcycle/__pycache__/sumMotorcycle.cpython-311.pyc differ diff --git a/exercicios/para-sala/Package/Sum/Motorcycle/sumMotorcycle.py b/exercicios/para-sala/Package/Sum/Motorcycle/sumMotorcycle.py new file mode 100644 index 0000000..d11d2f6 --- /dev/null +++ b/exercicios/para-sala/Package/Sum/Motorcycle/sumMotorcycle.py @@ -0,0 +1,2 @@ +def sum_motorcycle(quant_moto): + return quant_moto + 4 \ No newline at end of file diff --git a/exercicios/para-sala/Package/Sum/__init__.py b/exercicios/para-sala/Package/Sum/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/exercicios/para-sala/Package/Sum/__pycache__/__init__.cpython-311.pyc b/exercicios/para-sala/Package/Sum/__pycache__/__init__.cpython-311.pyc new file mode 100644 index 0000000..8c78c23 Binary files /dev/null and b/exercicios/para-sala/Package/Sum/__pycache__/__init__.cpython-311.pyc differ diff --git a/exercicios/para-sala/Package/Sum/__pycache__/sumHouse.cpython-311.pyc b/exercicios/para-sala/Package/Sum/__pycache__/sumHouse.cpython-311.pyc new file mode 100644 index 0000000..b8f2714 Binary files /dev/null and b/exercicios/para-sala/Package/Sum/__pycache__/sumHouse.cpython-311.pyc differ diff --git a/exercicios/para-sala/Package/Sum/sumHouse.py b/exercicios/para-sala/Package/Sum/sumHouse.py new file mode 100644 index 0000000..3f7f2d8 --- /dev/null +++ b/exercicios/para-sala/Package/Sum/sumHouse.py @@ -0,0 +1,2 @@ +def sum_house(quant_house): + return quant_house + 2 \ No newline at end of file diff --git a/exercicios/para-sala/Package/main.py b/exercicios/para-sala/Package/main.py new file mode 100644 index 0000000..4d858a9 --- /dev/null +++ b/exercicios/para-sala/Package/main.py @@ -0,0 +1,12 @@ +from PackageBodecam import moduleOne +from Sum import sumHouse +from Sum.Motorcycle import sumMotorcycle + +# info = moduleOne.main() +# print(info) + +# my_sum = moduleOne.sum(1, 2) +# print(my_sum) + +sum_motorcycle_bruna = sumMotorcycle.sum_motorcycle(1) +print(f"Bruna have {sum_motorcycle_bruna} motorcycles") \ No newline at end of file diff --git a/exercicios/para-sala/Revision/Main.py b/exercicios/para-sala/Revision/Main.py new file mode 100644 index 0000000..64aaa4a --- /dev/null +++ b/exercicios/para-sala/Revision/Main.py @@ -0,0 +1,3 @@ +from PackageRevision import KilometersToMiles + +print(KilometersToMiles.kilometer_to_miles(1000)) \ No newline at end of file diff --git a/exercicios/para-sala/Revision/Manipulation/Exercise.py b/exercicios/para-sala/Revision/Manipulation/Exercise.py new file mode 100644 index 0000000..addfb42 --- /dev/null +++ b/exercicios/para-sala/Revision/Manipulation/Exercise.py @@ -0,0 +1,27 @@ +import csv + +books = [] + +#Para continuar salvando as informações passadas + +with open("books.csv", "r") as arq: + writing = csv.reader(arq) + for line in writing: + title, author, year = line + books.append([title, author, year]) + +while True: + title = input("Enter title of book or exit") + if title.lower() == "exit": + print("Leaving of program") + break + author = input("Enter name author:\n") + year = input("Enter year of publish:\n") + books.append([title, author, year]) + +with open("books.csv", "w", newline="") as arq: + writing = csv.writer(arq) + writing.writerows(books) + +if title.lower() != "Exit": + print("Information added successfully ") \ No newline at end of file diff --git a/exercicios/para-sala/Revision/PackageRevision/CelsiustoFahrenheit.py b/exercicios/para-sala/Revision/PackageRevision/CelsiustoFahrenheit.py new file mode 100644 index 0000000..26cdf9f --- /dev/null +++ b/exercicios/para-sala/Revision/PackageRevision/CelsiustoFahrenheit.py @@ -0,0 +1,3 @@ +def celsius_to_fahrenheit(fahrenheit): + celsius = (fahrenheit - 451 - 32) / 1.8 + return celsius \ No newline at end of file diff --git a/exercicios/para-sala/Revision/PackageRevision/KilometersToMiles.py b/exercicios/para-sala/Revision/PackageRevision/KilometersToMiles.py new file mode 100644 index 0000000..d2b05f7 --- /dev/null +++ b/exercicios/para-sala/Revision/PackageRevision/KilometersToMiles.py @@ -0,0 +1,3 @@ +def kilometer_to_miles(quilometers): + miles = quilometers / 1.609 + return miles \ No newline at end of file diff --git a/exercicios/para-sala/Revision/PackageRevision/MeteersForFeet.py b/exercicios/para-sala/Revision/PackageRevision/MeteersForFeet.py new file mode 100644 index 0000000..288f5c0 --- /dev/null +++ b/exercicios/para-sala/Revision/PackageRevision/MeteersForFeet.py @@ -0,0 +1,3 @@ +def meteers_for_feets(meteers): + feets = meteers * 3.28084 + return feets \ No newline at end of file diff --git a/exercicios/para-sala/Revision/PackageRevision/__init__.py b/exercicios/para-sala/Revision/PackageRevision/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/exercicios/para-sala/Room/data.json b/exercicios/para-sala/Room/data.json new file mode 100644 index 0000000..272e7ea --- /dev/null +++ b/exercicios/para-sala/Room/data.json @@ -0,0 +1,2 @@ +[{"name": "Beyonce", "age": 42, "city": "Houston Texas"}, + {"name": "Bruna", "age": 27, "city": "Sao Paulo"}] \ No newline at end of file diff --git a/exercicios/para-sala/Room/data.txt b/exercicios/para-sala/Room/data.txt new file mode 100644 index 0000000..dc1b41b --- /dev/null +++ b/exercicios/para-sala/Room/data.txt @@ -0,0 +1,5 @@ +Beyoncé +Jay-z +Blue +Rummi +Carter \ No newline at end of file diff --git a/exercicios/para-sala/Room/dataOne.txt b/exercicios/para-sala/Room/dataOne.txt new file mode 100644 index 0000000..89e5803 --- /dev/null +++ b/exercicios/para-sala/Room/dataOne.txt @@ -0,0 +1 @@ +End line. \ No newline at end of file diff --git a/exercicios/para-sala/Room/manipulation-arq.py b/exercicios/para-sala/Room/manipulation-arq.py new file mode 100644 index 0000000..b05dd73 --- /dev/null +++ b/exercicios/para-sala/Room/manipulation-arq.py @@ -0,0 +1,63 @@ +import csv +# with open("./data.txt", "r") as arq: #read +# content = arq.read() +# print(f"{content} - Teacher") +# line = arq.readlines() +# print(line[2]) + + +# with open("./dataOne.txt", "w") as arquive: +# arquive.write("End line.") + + +# data = [["name", "age"], ["Beyonce", 42], ["Bruna", 27]] + +# with open("people.csv", "w", newline= "") as arq_csv: +# writer_csv = csv.writer(arq_csv) +# writer_csv.writerows(data) + + +# with open("people.csv", "r") as arq: +# reader_csv = csv.reader(arq) +# for line in reader_csv: +# print(line) + + +import json + +# data = [{"name": "Beyonce", "age": 42, "city": "Houston Texas"}, +# {"name": "Bruna", "age": 27, "city": "Sao Paulo"}] + +# with open("data.json", "w") as arquive_json: +# json.dump(data, arquive_json) + +# with open("data.json", "r") as arquive_json: +# data = json.load(arquive_json) +# print(data) + +#Exercise + +# with open("./dataExerciseOne.txt", "r") as arq: #read +# content = arq.read() +# print(f"{content} - Bodecam") + + +# data = [{"Name": "Beyonce", "Age": 42, "City": "Houston Texas", "Profission": "Singer, Performer and Actor", +# "Resume": "American singer, songwriter, and businesswoman. Known as Queen Bey, she has been widely recognized for her boundary pushing artistry, vocals, and performances. Her contributions to music and visual media and her concert performances have led her to become a prominent cultural figure of the 21st century. She was named the eighth greatest singer of all time by Rolling Stone in 2023."}] +# with open("dataExerciseTwo.json", "w") as arquive_json: +# json.dump(data, arquive_json) +# with open("dataExerciseTwo.json", "r") as arquive_json: +# data = json.load(arquive_json) +# print(data) + + +data = [["Name", "Age", "Grade"], ["Beyonce", 42, 10], ["Bruna", 27, 10]] + +with open("dataExerciceStudants.csv", "w", newline= "") as arq_csv: + writer_csv = csv.writer(arq_csv) + writer_csv.writerows(data) + +with open("dataExerciceStudants.csv", "r") as arq: + reader_csv = csv.reader(arq) + for line in reader_csv: + print(line) diff --git a/exercicios/para-sala/Room/people.csv b/exercicios/para-sala/Room/people.csv new file mode 100644 index 0000000..c4a52f1 --- /dev/null +++ b/exercicios/para-sala/Room/people.csv @@ -0,0 +1,3 @@ +name,age +Beyonce,42 +Bruna,27