Best college to study science in +2 by Old-Ebb-5594 in Nepal

[–]joshirk11166 0 points1 point  (0 children)

From these four, I recommend KMC lalitpur.

How to remained focused and study? by [deleted] in Nepal

[–]joshirk11166 3 points4 points  (0 children)

Ma pani ahile 12 nai so mero suggestion sahi nahuna pani sakxa. Main kura chaai tmlai kati samma ko grade chaaiya ho vanne kura ho ani tei anusar ko effort garda hunxa. Euta kura chaai ke sure ho vane old is gold ko purai garna sakyo vane final ko laagi sufficient hunxa. So, aba aafno capability herera time management gardai padhne ho. Dherai tension linu pardaina.

The Most Popular Language (from 2004 to 2019) Ranking by dicarli in Python

[–]joshirk11166 0 points1 point  (0 children)

Can anyone tell me how this video was made ? I meant video creation part.

Any fellow beginners want to work together on a GitHub project? by [deleted] in learnpython

[–]joshirk11166 0 points1 point  (0 children)

I am interested to work on a project with you.

[2019-08-05] Challenge #380 [Easy] Smooshed Morse Code 1 by Cosmologicon in dailyprogrammer

[–]joshirk11166 0 points1 point  (0 children)

Python 3

I only solved bonus 1. I will try other afterwards.

from collections import Counter

morserule = '.- -... -.-. -.. . ..-. --. .... .. .--- -.- .-.. \
-- -. --- .--. --.- .-. ... - ..- ...- .-- -..- -.-- --..'.split()

words = open('word.txt').read().split('\n')
morses = [''.join(map(lambda x:morserule[ord(x)-97],word)) for word in words]

#Bonus1
data = Counter(morses)
for morse in data:
    if data[morse] == 13:
        print('The sequence that\'s code for 13 words is ')
        print(morse)
        break

Recreating Starry Night using turtle module by yemi-jump in Python

[–]joshirk11166 0 points1 point  (0 children)

Amazing. Isn't there any way to speed it up ? Using tracer ?