+ 1
Is there a better app than Sololearn for Python?
I just don't quite like the style of Sololearn it's not step by step. Any suggestions?
9 Respostas
+ 8
You would probably be better off googling that or going to the App store or Play store and reading the reviews and ratings of Python programming apps.
I personally like the bite-sized lessons on Sololearn and have used the app to introduce students to programming!
+ 5
https://www.sololearn.com/Discuss/821134/?ref=app
https://www.sololearn.com/Discuss/1187881/?ref=app
In Community -> Practice there also you will get community created lesson.
https://www.sololearn.com/learn/o-JUMP_LINK__&&__Python__&&__JUMP_LINK/4429/?ref=app
Even though this account isn't active but it has lots of resources for python.
https://www.sololearn.com/profile/15103665/?ref=app
+ 3
No.
+ 2
You can try "pydroid 3" rating=4.4 ,or "python for beginners" rating=4.8. I find it on play Store.
+ 2
Grasshopper: Fun way to learn coding
Mimo: Step by step lessons
Py: interactive lessons.
Give them a try and see which one you like best
+ 2
go to w3school .. i learn python there since its got all the explanation and going more detailed .. make sure u retype whatever w3school teach u so u can understand more and make learning a breeze
+ 1
Tayyab Pathan MOTHISAN Please stay on topic and use DM for private chats, or post general discussion and codes in your feed by going to Community -> Feed đ
0
Any one indian????
0
*{
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif
}
body {
height: 100vh;
display: flex;
justify-content: center;
align-items: center;
background: radial-gradient(circle,#0b456b,#021c37)
}
.clock{
height: 360px;
width: 360px;
position: relative;
border-radius: 50%;
display: flex;
justify-content: center;
align-items: center;
background: radial-gradient(circle,#05263c,#000d1a);
}
.clock::before{
content: "";
width: 380px;
height: 380px;
position: absolute;
border-radius: 50%;
background: linear-gradient(to right,#00d9ff,#ee00ff);
box-shadow: 0 0 15px 15px rgba(0, 0, 0, 0.2);
z-index: -1;
}
.number {
transform: rotate(calc(30deg * var(--n)));
position: absolute;
text-align: center;
inset: 20px;
font-size: 30px;
color: #00d9ff;
text-shadow: 0 0 12px #ee00ff;
}
.number b {
transform: rotate(calc(-30deg * var(--n)));
display: inline-block;
}
.center-dot {
position: absolute;
w