Python Forum
Using an integer to manipulate a string/text variable
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Using an integer to manipulate a string/text variable
#1
Write a function that consumes a non-negative integer k and prints a k-size diamond. A k-size diamond consists of a top, a middle and a bottom. The middle is a single row of 2k+1 d’s. The top consists of k rows. The i throw in the top (starting from 0) contains 2i+1 d’s. The d’s on each top row are centred over the d’s on the middle row. A bottom is like a top but upside down.

Ex. k = 2;

d
ddd
ddddd
ddd
d

I have tried doing it in java, and want to do it in python. This is what I have so far in java:

int k;
int l;

void setup() {
size(400, 400);
k = 2;

textAlign(CENTER, CENTER);

String s = "d";
fill(255,0,0);
text(s + s + s + s +s, CENTER + 200, CENTER + 200);
}
Reply
#2
If each line is a string, it's possible to place spaces as required at the beginning of the string.
Reply


Possibly Related Threads…
Thread Author Replies Views Last Post
  Split string into 160-character chunks while adding text to each part iambobbiekings 9 9,583 Jan-27-2021, 08:15 AM
Last Post: iambobbiekings
  Reading a text until matched string and print it as a single line cananb 1 2,017 Nov-29-2020, 01:38 PM
Last Post: DPaul
  Printing a string from a variable retroC0de 1 1,745 Nov-06-2020, 11:59 PM
Last Post: timoshea
  Appending to a text string syno7878 10 4,241 May-03-2020, 10:05 AM
Last Post: snippsat
  Trying to extract Only the capitol letters from a string of text Jaethan 2 2,169 Feb-27-2020, 11:19 PM
Last Post: Marbelous
  Determine if string is integer jrodencal 12 4,115 Oct-15-2019, 01:39 PM
Last Post: jefsummers
  Converting String to Integer Python Johnny1998 5 3,045 Aug-02-2019, 08:13 PM
Last Post: Johnny1998
  How to manipulate between lists and get results pythoneer 10 5,091 Mar-08-2018, 05:26 PM
Last Post: pythoneer
  program that search string in text file and do something alon30 1 3,240 Aug-04-2017, 08:10 AM
Last Post: buran
  How to find exact matching string from the text desul 5 4,094 Apr-17-2017, 04:31 PM
Last Post: nilamo

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020