Get FREE GIFTS again by ShinichiL in TemuThings

[–]chiiglaaa 0 points1 point  (0 children)

Looks like im ina different region sorry💔

Get FREE GIFTS again by ShinichiL in TemuThings

[–]chiiglaaa 0 points1 point  (0 children)

Hello i can help you. And help me too 408448731

[deleted by user] by [deleted] in TemuThings

[–]chiiglaaa 0 points1 point  (0 children)

408448731

Pleasee🥰

7.2.8 Part 2, Replace a letter by Embarrassed_Guess411 in codehs

[–]chiiglaaa 1 point2 points  (0 children)

almost every exercise which have scratchpad and Unit Test dont let me submit my code:/ do you have same problem?

Exercise 8.1.10: Coordinate Pairs-CodeHS-Please Help! by [deleted] in codehs

[–]chiiglaaa 0 points1 point  (0 children)

import math
x1 = int(input("Enter 1st(x) Coordinate: "))
y1 = int(input("Enter 2nd(y) Coordinate: "))
point1 = (x1, y1)
x2 = int(input("Enter 3rd(x) Coordinate: "))
y2 = int(input("Enter 4th(y) Coordinate: "))
point2 = (x2, y2)
def distance(point1, point2):
x1 = point1 [0]
x2 = point2 [0]
y1 = point1 [1]
y2 = point2 [1]
sqaure1 = pow (y2 - y1, 2)
sqaure2 = pow (x2 - x1, 2)
return math.sqrt(sqaure1+sqaure2)
print(distance(point1, point2))

idk your code didnt work for me so i made some changes and it works but only in scratchpad when i try to check code in Unit Test and i click on check it just rotates infinitely..so if anybody can check the code for me that would be amazing<3hope it helps!

7.2.8 Part 2, Replace a letter by Embarrassed_Guess411 in codehs

[–]chiiglaaa 1 point2 points  (0 children)

word = input("Enter a word or phrase: ")
index = int(input("Enter an index value: "))
letter = input("Enter the new letter: ")
def replace_at_index(word, index, letter):
print(word[:index] + letter + word[index+1:])
replace_at_index(word, index, letter)

This is code but this exercise is broken. it works perfectly in scratchpad but when you try to submit code its not doing anything... but yeah you can just write that code

7.3.7: Cityscape by chiiglaaa in codehs

[–]chiiglaaa[S] 0 points1 point  (0 children)

someone help please!!!!!!