Search posts, tags, users, and pages
Manoj Paramsetti
Programming, Android, Linux
Hey! Good looking eyes, thanks for start reading my blog ๐ Annotations in Python Have you ever seen this -> symbol anywhere in the C programming language? Yes, right? Mostly, we have used it while using structures in C language but have you ever see...
Sunil Joshi
Just Another Terminal Geek..
Passing arguments section def function(a, b, c): print(a, b, c) list = [1, 2, 3] function(*t)
t should be list
Thanks Sunil Joshi, I've updated my blog. It is supposed to be _list. I had this t as variable in my VS Code and when I was writing this blog I tried to rename it to _list variable but I forgot to change its variable name in param.
Sunil Joshi
Just Another Terminal Geek..
Passing arguments section def function(a, b, c): print(a, b, c) list = [1, 2, 3] function(*t)
t should be list