Skip to content

Instantly share code, notes, and snippets.

View Tuhin-thinks's full-sized avatar
🏅
Learning

Tuhin Mitra Tuhin-thinks

🏅
Learning
View GitHub Profile
height = 10
width = 10
for i in range(height): # row
for j in range(width): # columns
if i in [height-1, 0]:
if j != 0 and j != width-1:
print('X', end='')
else:
print(' ',end='')
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@Tuhin-thinks
Tuhin-thinks / PY0101EN-1-2-Strings.ipynb
Created May 20, 2021 11:41
Created on Skills Network Labs
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@Tuhin-thinks
Tuhin-thinks / PY0101EN-2-2-Lists.ipynb
Created May 20, 2021 11:48
Created on Skills Network Labs
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@Tuhin-thinks
Tuhin-thinks / PY0101EN-2-3-Dictionaries.ipynb
Created May 20, 2021 11:57
Created on Skills Network Labs
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@Tuhin-thinks
Tuhin-thinks / PY0101EN-2-3-Sets.ipynb
Created May 20, 2021 12:07
Created on Skills Network Labs
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@Tuhin-thinks
Tuhin-thinks / PY0101EN-2-3-Sets.ipynb
Created May 20, 2021 12:07
Created on Skills Network Labs
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@Tuhin-thinks
Tuhin-thinks / PY0101EN-3-1-Conditions.ipynb
Created May 27, 2021 05:46
Created on Skills Network Labs
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@Tuhin-thinks
Tuhin-thinks / PY0101EN-3-2-Loops.ipynb
Created May 27, 2021 05:55
Created on Skills Network Labs
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.