How to add image source in sololearn it won't work in my mobile | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

How to add image source in sololearn it won't work in my mobile

30th Jun 2021, 5:38 AM
gayathri bulipe
gayathri bulipe - avatar
11 Answers
+ 2
This question already been asked at least 200 times in sololearn.So please use the search bar: https://www.sololearn.com/post/10362/?ref=app https://www.sololearn.com/post/459751/?ref=app https://code.sololearn.com/Wy3lrXNwGsgJ/?ref=app
30th Jun 2021, 7:27 AM
The future is now thanks to science
The future is now thanks to science - avatar
+ 2
Rabilu Abdulaziz don't spam other one question, all the more with unrelated question ^^ anyway, your code is fine (good method) and others methods will not make noticeable difference ;P if you want to view other ways to solve it, rather use the search functionalitiy: there are already a lot of question requiesting help for this task, where you could find alternatives ;)
4th Jul 2021, 9:09 PM
visph
visph - avatar
+ 1
you must host (upload) image to cloud, and use absolute url in src attribute ^^
30th Jun 2021, 5:42 AM
visph
visph - avatar
+ 1
Akash Kumar yes, but it won't work if you share your code (or make it public) ^^
30th Jun 2021, 5:47 AM
visph
visph - avatar
+ 1
Akash Kumar it would also not work if you open your code on another device ^^
30th Jun 2021, 5:51 AM
visph
visph - avatar
+ 1
Akash Kumar I mean: by using file:/// protocol ;)
30th Jun 2021, 5:54 AM
visph
visph - avatar
+ 1
Akash Kumar yes, but what if you worked on project, save it, and change device to continue working on project? ;P
30th Jun 2021, 5:59 AM
visph
visph - avatar
0
In sololearn you can't upload directly your photo from your storage .You should upload it on a image hosting website and then make a img tag.
1st Jul 2021, 2:53 AM
Badshah
Badshah - avatar
0
Carolina Humphrey Please keep your comments 13+. Your comment has been reported. It's not acceptable to post any NSFW content in a coding platform. SoloLearn is not Tinder.
2nd Jul 2021, 6:03 AM
Calvin Thomas
Calvin Thomas - avatar
- 2
It will not work but use your PC browser or window explorer
1st Jul 2021, 6:55 PM
Rabilu Abdulaziz
Rabilu Abdulaziz - avatar
- 3
I solved this question through this method but it is not good method anyone can help me to solve this question . To other method You are trying to send a secret message, and you've decided to encode it by replacing every letter in your message with its corresponding letter in a backwards version of the alphabet. What do your messages look like? Task: Create a program that replaces each letter in a message with its corresponding letter in a backwards version of the English alphabet. Input Format: A string of your message in its normal form. Output Format: A string of your message once you have encoded it (all lower case). Sample Input: Hello World Sample Output: svool dliow ###### solution#### a_z={"z":"a", "y":"b", "x":"c", "w":"d", "v":"e", "u":"f", "t":"g", "s":"h", "r":"i", "q":"j", "p":"k", "o":"l", "n":"m", "m":"n", "l":"o", "k":"p", "j":"q", "i":"r", "h":"s", "g":"t", "f":"u", "e":"v", "d":"w", "c":"x", "b":"y", "a":"z" } result="".join(a_z.get(word,word) for word in input
4th Jul 2021, 9:04 PM
Rabilu Abdulaziz
Rabilu Abdulaziz - avatar