Skip to content

Instantly share code, notes, and snippets.

@cibofdevs
Last active July 10, 2024 02:14
Show Gist options
  • Save cibofdevs/967df5e853c7f1755ba4920b502b7922 to your computer and use it in GitHub Desktop.
Save cibofdevs/967df5e853c7f1755ba4920b502b7922 to your computer and use it in GitHub Desktop.
# Create an empty string and assign it to the variable lett.
# Then using range, write code such that when your code is run, lett has 7 b’s ("bbbbbbb").
lett = ''
for i in range(7):
lett += 'b'
print(lett, end='')
@Sayed10000002
Copy link

lett = " "
range(7)
lett = "b"*7

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment