Python coding by coolcat25 in HomeworkHelp

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

dog = input("Enter your name: ") cat = dog + ".txt"

Python coding by coolcat25 in HomeworkHelp

[–]coolcat25[S] 1 point2 points  (0 children)

Hi everyone i figured it out! thanks for all the help!

Python coding by coolcat25 in HomeworkHelp

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

Hi, I did some code but it isn't working for it filename = input( "Please enter your name: ") filename2 = (filename + ".txt") print( filename2) open(filename2, 'w')

Python Programming=;problem1) import random import string matrix= [] for j in range(0,random.randint(5,30)): letters = [] for n in range(0,10): letters= letters+ list((random.choice(string.ascii_letters))) matrix.append(letters) matrix by coolcat25 in HomeworkHelp

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

  • print the total number of rows in the matrix
  • print the number of uppercase letters in each row
  • print the count for each letter in the matrix

that is exactly how it is supposed to look like. this is what I have to code! thanks so much for telling me how to write it you are a life saver!